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:
sternenseemann 2021-05-18 00:05:15 +02:00
parent 17a71f3148
commit 556821055f

View File

@ -772,4 +772,10 @@ self: super: builtins.intersectAttrs super {
export HOME=$TMPDIR/home
'';
});
taglib = overrideCabal super.taglib (drv: {
librarySystemDepends = [
pkgs.zlib
] ++ (drv.librarySystemDepends or []);
});
}