2016-01-17 15:04:40 -08:00
|
|
|
{ stdenv, zlib, autoreconfHook }:
|
2014-03-17 18:21:10 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "minizip-${zlib.version}";
|
|
|
|
inherit (zlib) src;
|
|
|
|
|
2016-01-17 15:04:40 -08:00
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
2014-03-17 18:21:10 -07:00
|
|
|
buildInputs = [ zlib ];
|
|
|
|
|
2016-01-17 15:04:40 -08:00
|
|
|
sourceRoot = "zlib-${zlib.version}/contrib/minizip";
|
2016-08-02 09:06:29 -07:00
|
|
|
|
|
|
|
meta = {
|
2019-11-17 00:43:55 -08:00
|
|
|
description = "Compression library implementing the deflate compression method found in gzip and PKZIP";
|
2018-08-09 02:14:15 -07:00
|
|
|
inherit (zlib.meta) license homepage;
|
2016-08-02 09:06:29 -07:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
|
|
|
};
|
2014-03-17 18:21:10 -07:00
|
|
|
}
|