Skip to content

Commit

Permalink
haskellPackages.cabalSdist: Work around cabal#8413
Browse files Browse the repository at this point in the history
  • Loading branch information
roberth committed Aug 21, 2022
1 parent d08667a commit ad6f339
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion pkgs/development/haskell-modules/make-package-set.nix
Original file line number Diff line number Diff line change
Expand Up @@ -552,7 +552,13 @@ in package-set { inherit pkgs lib callPackage; } self // {
pkgs.runCommandLocal name
{
inherit src;
nativeBuildInputs = [ buildHaskellPackages.cabal-install ];
nativeBuildInputs = [
buildHaskellPackages.cabal-install

# TODO after https://github.com/haskell/cabal/issues/8352
# remove ghc
self.ghc
];
dontUnpack = false;
} ''
unpackPhase
Expand Down

0 comments on commit ad6f339

Please sign in to comment.