haskell-generic-builder: include build-tool dependencies in shell environments
For a Haskell package "foo" the environment foo.env now contains the build tool dependencies required for compiling the package in $PATH. Fixes https://github.com/NixOS/cabal2nix/issues/331.
This commit is contained in:
parent
e44d763b1d
commit
bd3379c443
@ -384,7 +384,7 @@ stdenv.mkDerivation ({
|
|||||||
env = stdenv.mkDerivation {
|
env = stdenv.mkDerivation {
|
||||||
name = "interactive-${pname}-${version}-environment";
|
name = "interactive-${pname}-${version}-environment";
|
||||||
buildInputs = systemBuildInputs;
|
buildInputs = systemBuildInputs;
|
||||||
nativeBuildInputs = [ ghcEnv ];
|
nativeBuildInputs = [ ghcEnv ] ++ nativeBuildInputs;
|
||||||
LANG = "en_US.UTF-8";
|
LANG = "en_US.UTF-8";
|
||||||
LOCALE_ARCHIVE = optionalString stdenv.isLinux "${glibcLocales}/lib/locale/locale-archive";
|
LOCALE_ARCHIVE = optionalString stdenv.isLinux "${glibcLocales}/lib/locale/locale-archive";
|
||||||
shellHook = ''
|
shellHook = ''
|
||||||
|
Loading…
x
Reference in New Issue
Block a user