forked from mirrors/nixpkgs
haskellPackages.taglib: add zlib to librarySystemDepends
Depends on zlib somehow (https://hydra.nixos.org/build/143009645/nixlog/1) which is not declared in the cabal file.
This commit is contained in:
parent
17a71f3148
commit
556821055f
|
@ -772,4 +772,10 @@ self: super: builtins.intersectAttrs super {
|
|||
export HOME=$TMPDIR/home
|
||||
'';
|
||||
});
|
||||
|
||||
taglib = overrideCabal super.taglib (drv: {
|
||||
librarySystemDepends = [
|
||||
pkgs.zlib
|
||||
] ++ (drv.librarySystemDepends or []);
|
||||
});
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue