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