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

stdenv.mkDerivation rec {
  name = "libzip-0.10";
  
  src = fetchurl {
    url = "http://www.nih.at/libzip/${name}.tar.gz";
    sha256 = "1lnpxcl4z084bvx3jd0pqgr350ljnizpnlwh5vbzjp0iw9jakbxp";
  };
  
  buildInputs = [ zlib ];

  meta = {
    homepage = http://www.nih.at/libzip;
    description = "A C library for reading, creating and modifying zip archives";
  };
}