mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 23:36:17 +01:00
haskell.lib.getHaskellBuildInputs: Actually get the haskell build inputs.
5523ec8f3c
accidentally dropped the attribute lookup.
This commit is contained in:
parent
8251a3777f
commit
7372d3bf31
1 changed files with 1 additions and 1 deletions
|
@ -301,7 +301,7 @@ rec {
|
|||
getHaskellBuildInputs = p:
|
||||
(overrideCabal p (args: {
|
||||
passthru = (args.passthru or {}) // {
|
||||
_getHaskellBuildInputs = extractBuildInputs p.compiler args;
|
||||
_getHaskellBuildInputs = (extractBuildInputs p.compiler args).haskellBuildInputs;
|
||||
};
|
||||
}))._getHaskellBuildInputs;
|
||||
|
||||
|
|
Loading…
Reference in a new issue