forked from mirrors/nixpkgs
Fix #26441 second try: avoid infinite recursion
This commit is contained in:
parent
7c455b5b7e
commit
72f530ba33
|
@ -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:
|
||||
|
||||
|
|
Loading…
Reference in a new issue