about summary refs log tree commit diff
path: root/pkgs/development/libraries/minizip/default.nix
blob: c88a978574a77c77ef774ed33ecdb1ab4a201dff (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ stdenv, zlib, autoreconfHook }:

stdenv.mkDerivation {
  name = "minizip-${zlib.version}";
  inherit (zlib) src;

  nativeBuildInputs = [ autoreconfHook ];
  buildInputs = [ zlib ];

  sourceRoot = "zlib-${zlib.version}/contrib/minizip";

  meta = {
    inherit (zlib.meta) license homepage;
    platforms = stdenv.lib.platforms.unix;
  };
}