Fix #26441: avoid infinite recursion
This commit is contained in:
parent
537944ea77
commit
9cad7076d1
@ -5,7 +5,7 @@ with stdenv.lib;
|
|||||||
{ buildInputs ? []
|
{ buildInputs ? []
|
||||||
, extraArgs ? []
|
, extraArgs ? []
|
||||||
, LD_LIBRARY_PATH ? []
|
, LD_LIBRARY_PATH ? []
|
||||||
, ghc ? ghc
|
, ghc' ? ghc
|
||||||
, ...
|
, ...
|
||||||
}@args:
|
}@args:
|
||||||
|
|
||||||
@ -14,7 +14,7 @@ stdenv.mkDerivation (args // {
|
|||||||
buildInputs =
|
buildInputs =
|
||||||
buildInputs ++
|
buildInputs ++
|
||||||
optional stdenv.isLinux glibcLocales ++
|
optional stdenv.isLinux glibcLocales ++
|
||||||
[ ghc pkgconfig ];
|
[ ghc' pkgconfig ];
|
||||||
|
|
||||||
STACK_PLATFORM_VARIANT="nix";
|
STACK_PLATFORM_VARIANT="nix";
|
||||||
STACK_IN_NIX_SHELL=1;
|
STACK_IN_NIX_SHELL=1;
|
||||||
|
Loading…
Reference in New Issue
Block a user