Skip to content

Commit 7c455b5

Browse files
committedJun 15, 2017
Revert "Fix #26441: avoid infinite recursion"
This reverts commit 9cad707. See 9cad707#commitcomment-22548331
1 parent fe04169 commit 7c455b5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎pkgs/development/haskell-modules/generic-stack-builder.nix

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ with stdenv.lib;
55
{ buildInputs ? []
66
, extraArgs ? []
77
, LD_LIBRARY_PATH ? []
8-
, ghc' ? ghc
8+
, ghc ? ghc
99
, ...
1010
}@args:
1111

@@ -14,7 +14,7 @@ stdenv.mkDerivation (args // {
1414
buildInputs =
1515
buildInputs ++
1616
optional stdenv.isLinux glibcLocales ++
17-
[ ghc' pkgconfig ];
17+
[ ghc pkgconfig ];
1818

1919
STACK_PLATFORM_VARIANT="nix";
2020
STACK_IN_NIX_SHELL=1;

0 commit comments

Comments
 (0)