Skip to content

Commit 72f530b

Browse files
committedJun 15, 2017
Fix #26441 second try: avoid infinite recursion
1 parent 7c455b5 commit 72f530b

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
@@ -1,11 +1,11 @@
1-
{ stdenv, ghc, pkgconfig, glibcLocales, cacert }:
1+
{ stdenv, ghc, pkgconfig, glibcLocales, cacert }@depArgs:
22

33
with stdenv.lib;
44

55
{ buildInputs ? []
66
, extraArgs ? []
77
, LD_LIBRARY_PATH ? []
8-
, ghc ? ghc
8+
, ghc ? depArgs.ghc
99
, ...
1010
}@args:
1111

0 commit comments

Comments
 (0)
Please sign in to comment.