mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
Fix #26441 second try: avoid infinite recursion
This commit is contained in:
parent
7c455b5b7e
commit
72f530ba33
1 changed files with 2 additions and 2 deletions
|
@ -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