aboutsummaryrefslogtreecommitdiffstats
path: root/pkgs/default.nix
blob: 8264df5ccefd325e261e95eb077e12aebff8cf39 (plain)
1
2
3
4
5
6
7
8
9
10
self: super: {
  haskell = super.haskell // {
    packageOverrides = self.lib.composeExtensions super.haskell.packageOverrides (let
    pkgs = self;
  in
    self: super: {
      sh = pkgs.haskell.lib.dontCheck (self.callCabal2nix "sh" ./.. { });
    });
  };
}