2024-05-23 11:43:35 +00:00
|
|
|
{ lib, stdenv, zlib, autoreconfHook }:
|
2014-03-18 01:21:10 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2022-02-14 20:39:49 +00:00
|
|
|
pname = "minizip";
|
2023-08-08 17:18:26 +00:00
|
|
|
inherit (zlib) src version;
|
2014-03-18 01:21:10 +00:00
|
|
|
|
2023-10-22 11:15:16 +00:00
|
|
|
patchFlags = [ "-p3" ];
|
|
|
|
|
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 16:06:29 +00: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 09:14:15 +00:00
|
|
|
inherit (zlib.meta) license homepage;
|
2021-01-21 17:00:13 +00:00
|
|
|
platforms = lib.platforms.unix;
|
2016-08-02 16:06:29 +00:00
|
|
|
};
|
2014-03-18 01:21:10 +00:00
|
|
|
}
|