haskell.lib.getHaskellBuildInputs: Actually get the haskell build inputs.

5523ec8f3c accidentally dropped the attribute lookup.
This commit is contained in:
Shea Levy 2018-08-14 17:05:14 -04:00
parent 8251a3777f
commit 7372d3bf31
No known key found for this signature in database
GPG key ID: 5C0BD6957D86FE27

View file

@ -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;