mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
Revert "Fix #26441: avoid infinite recursion"
This reverts commit9cad7076d1
. See9cad7076d1 (commitcomment-22548331)
This commit is contained in:
parent
fe041692e2
commit
7c455b5b7e
1 changed files with 2 additions and 2 deletions
|
@ -5,7 +5,7 @@ with stdenv.lib;
|
|||
{ buildInputs ? []
|
||||
, extraArgs ? []
|
||||
, LD_LIBRARY_PATH ? []
|
||||
, ghc' ? ghc
|
||||
, ghc ? ghc
|
||||
, ...
|
||||
}@args:
|
||||
|
||||
|
@ -14,7 +14,7 @@ stdenv.mkDerivation (args // {
|
|||
buildInputs =
|
||||
buildInputs ++
|
||||
optional stdenv.isLinux glibcLocales ++
|
||||
[ ghc' pkgconfig ];
|
||||
[ ghc pkgconfig ];
|
||||
|
||||
STACK_PLATFORM_VARIANT="nix";
|
||||
STACK_IN_NIX_SHELL=1;
|
||||
|
|
Loading…
Reference in a new issue