We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Learn more about funding links in repositories.
Report abuse
1 parent a0b51de commit 2abe5feCopy full SHA for 2abe5fe
pkgs/development/haskell-modules/with-packages-wrapper.nix
@@ -3,6 +3,7 @@
3
, postBuild ? ""
4
, haskellPackages
5
, ghcLibdir ? null # only used by ghcjs, when resolving plugins
6
+, extraOutputsToInstall ? [ "out" "doc" "lib" ]
7
}:
8
9
assert ghcLibdir != null -> (ghc.isGhcjs or false);
@@ -58,8 +59,7 @@ symlinkJoin {
58
59
# as a dedicated drv attribute, like `compiler-name`
60
name = ghc.name + "-with-packages";
61
paths = paths ++ [ghc];
- extraOutputsToInstall = [ "out" "doc" "lib" ];
62
- inherit ignoreCollisions;
+ inherit extraOutputsToInstall ignoreCollisions;
63
postBuild = ''
64
. ${makeWrapper}/nix-support/setup-hook
65
0 commit comments