My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/libraries/minizip/default.nix

18 lines
462 B

{ lib, stdenv, zlib, autoreconfHook }:
stdenv.mkDerivation {
pname = "minizip";
version = 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;
platforms = lib.platforms.unix;
};
}