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
pkgs
intel-oneapi
paraver

View File

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

View File

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