33acfbe917
This is needed by Chromium and is part of the zlib source tree in contrib/, so let's propagate the version of zlib and use the same source tree. Signed-off-by: aszlig <aszlig@redmoonstudios.org>
15 lines
280 B
Nix
15 lines
280 B
Nix
{ stdenv, zlib, autoconf, automake, libtool }:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "minizip-${zlib.version}";
|
|
inherit (zlib) src;
|
|
|
|
nativeBuildInputs = [ autoconf automake libtool ];
|
|
buildInputs = [ zlib ];
|
|
|
|
preConfigure = ''
|
|
cd contrib/minizip
|
|
autoreconf -vfi
|
|
'';
|
|
}
|