Added libzip

svn path=/nixpkgs/trunk/; revision=9637
This commit is contained in:
Yury G. Kudryashov 2007-11-11 16:19:00 +00:00
parent 9aea8727be
commit 118560335c
2 changed files with 20 additions and 0 deletions

View file

@ -0,0 +1,16 @@
args: with args;
stdenv.mkDerivation {
name = "libzip-0.8";
src = fetchurl {
url = http://www.nih.at/libzip/libzip-0.8.tar.gz;
sha256 = "0iy04c3b2yfwl9lpgwzm12qkdskbxj8l91r6mgn8f6ib00fj66ss";
};
configureFlags = "--enable-shared --disable-static";
buildInputs = [zlib];
meta = {
homepage = http://www.nih.at/libzip;
description = "A C library for reading, creating and modifying zip archives";
};
}

View file

@ -2072,6 +2072,10 @@ rec {
includeUnpack = getConfig ["stdenv" "includeUnpack"] false;
});
libzip = import ../development/libraries/libzip {
inherit fetchurl stdenv zlib;
};
lzo = import ../development/libraries/lzo {
inherit fetchurl stdenv;
};