mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
Add back in args passed to buildLocalCabalWithArgs
This commit is contained in:
parent
d822d0fdd3
commit
2eaf8fda24
1 changed files with 2 additions and 2 deletions
|
@ -3165,13 +3165,13 @@ self : let callPackage = x : y : modifyPrio (newScope self x y); in
|
|||
LANG = "en_US.UTF-8";
|
||||
LOCALE_ARCHIVE = "${nativePkgs.glibcLocales}/lib/locale/locale-archive";
|
||||
});
|
||||
in callPackage cabalExpr {
|
||||
in callPackage cabalExpr ({
|
||||
cabal = self.cabal.override {
|
||||
extension = eself: esuper: {
|
||||
buildDepends = [ self.cabalInstall ] ++ esuper.buildDepends;
|
||||
} // cabalDrvArgs;
|
||||
};
|
||||
};
|
||||
} // args);
|
||||
|
||||
buildLocalCabal = src: name: self.buildLocalCabalWithArgs { inherit src name; };
|
||||
|
||||
|
|
Loading…
Reference in a new issue