about summary refs log tree commit diff
path: root/pkgs/development/libraries/minizip/default.nix
blob: 1fb737ed7a7583cbd7204d1e3c7e7af5c889e8a1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ 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;
  };
}