2021-02-05 17:12:51 +00:00
|
|
|
{ lib, stdenv, zlib, autoreconfHook }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "minizip-${zlib.version}";
|
|
|
|
inherit (zlib) src;
|
|
|
|
|
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
|
|
buildInputs = [ zlib ];
|
|
|
|
|
|
|
|
sourceRoot = "zlib-${zlib.version}/contrib/minizip";
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Compression library implementing the deflate compression method found in gzip and PKZIP";
|
|
|
|
inherit (zlib.meta) license homepage;
|
2021-02-05 17:12:51 +00:00
|
|
|
platforms = lib.platforms.unix;
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|