libarchive added

svn path=/nixpkgs/branches/stdenv-updates/; revision=10236
This commit is contained in:
Yury G. Kudryashov 2008-01-22 13:08:32 +00:00
parent dc15788487
commit dc2b4f3ec7
2 changed files with 19 additions and 0 deletions

View File

@ -0,0 +1,15 @@
args: with args;
stdenv.mkDerivation rec {
name = "libarchive-2.4.11";
src = fetchurl {
url = "http://FIXME_dont_remember/${name}.tar.gz";
sha256 = "1iq5hs4hbqyl6sqiqlaj3j89vpfqx6zv974c965nxjvmwy816dbz";
};
buildInputs = [zlib];
meta = {
description = "A library for reading and writing streaming archives";
};
}

View File

@ -2023,6 +2023,10 @@ rec {
inherit (xlibs) libXp libXau;
};
libarchive = import ../development/libraries/libarchive {
inherit fetchurl stdenv zlib;
};
libassuan = import ../development/libraries/libassuan {
inherit fetchurl stdenv pth;
};