0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-13 21:50:33 +03:00

haskell: switch from haskell.lib to haskell.lib.compose

This commit is contained in:
Ellie Hermaszewska 2021-10-26 18:20:34 +08:00
parent 518f09f2d0
commit 15ae25f36c
No known key found for this signature in database
GPG key ID: C8116E3A0C1CA76A
32 changed files with 635 additions and 629 deletions

View file

@ -17,7 +17,7 @@ let
};
setTensorflowSourceRoot = dir: drv:
(overrideCabal drv (drv: { src = tensorflow-haskell; }))
(overrideCabal (drv: { src = tensorflow-haskell; }) drv)
.overrideAttrs (_oldAttrs: {sourceRoot = "source/${dir}";});
in
{