1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

libabw: fix build after libxml2 update

libabw requires zlib, which was previously but no longer propagated by libxml2
This commit is contained in:
Mrmaxmeier 2024-07-22 23:34:27 +02:00
parent 60e9cffe2c
commit 05579c9e51

View file

@ -1,4 +1,4 @@
{ lib, stdenv, fetchurl, boost, doxygen, gperf, pkg-config, librevenge, libxml2, perl }:
{ lib, stdenv, fetchurl, boost, doxygen, gperf, pkg-config, librevenge, libxml2, perl, zlib }:
stdenv.mkDerivation rec {
pname = "libabw";
@ -16,7 +16,7 @@ stdenv.mkDerivation rec {
'';
nativeBuildInputs = [ pkg-config ];
buildInputs = [ boost doxygen gperf librevenge libxml2 perl ];
buildInputs = [ boost doxygen gperf librevenge libxml2 perl zlib ];
meta = with lib; {
homepage = "https://wiki.documentfoundation.org/DLP/Libraries/libabw";