Skip to content

Commit

Permalink
Fix #26441 second try: avoid infinite recursion
Browse files Browse the repository at this point in the history
  • Loading branch information
domenkozar committed Jun 15, 2017
1 parent 7c455b5 commit 72f530b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkgs/development/haskell-modules/generic-stack-builder.nix
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{ stdenv, ghc, pkgconfig, glibcLocales, cacert }:
{ stdenv, ghc, pkgconfig, glibcLocales, cacert }@depArgs:

with stdenv.lib;

{ buildInputs ? []
, extraArgs ? []
, LD_LIBRARY_PATH ? []
, ghc ? ghc
, ghc ? depArgs.ghc
, ...
}@args:

Expand Down

0 comments on commit 72f530b

Please sign in to comment.