mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
ghc-with-packages.nix: make sure that GHC itself is included in the environment
This commit is contained in:
parent
f58a1f5c98
commit
094edba311
1 changed files with 1 additions and 1 deletions
|
@ -10,7 +10,7 @@ let
|
|||
in
|
||||
buildEnv {
|
||||
name = "haskell-env-${ghc.name}";
|
||||
paths = stdenv.lib.filter (x: x ? ghc) (stdenv.lib.closePropagation (packages ++ [ghc]));
|
||||
paths = stdenv.lib.filter (x: x ? ghc) (stdenv.lib.closePropagation packages) ++ [ghc];
|
||||
postBuild = ''
|
||||
. ${makeWrapper}/nix-support/setup-hook
|
||||
|
||||
|
|
Loading…
Reference in a new issue