Add explicit zlib dependency

The stdenv no longer provides it by default.

Reviewed-by: Aleix Boné <abonerib@bsc.es>
Tested-by: Rodrigo Arias Mallo <rodrigo.arias@bsc.es>
This commit is contained in:
Rodrigo Arias 2025-01-17 11:24:39 +01:00
parent 501f11a8e5
commit 22e40db034
2 changed files with 3 additions and 0 deletions

View File

@ -198,6 +198,7 @@ let
libffi_3_3
libelf
libxml2
zlib
hwloc
stdenv.cc.cc.lib
];

View File

@ -8,6 +8,7 @@
, autoconf
, automake
, pkg-config
, zlib
}:
let
@ -51,5 +52,6 @@ stdenv.mkDerivation rec {
autoconf
automake
pkg-config
zlib
];
}