nixpkgs/pkgs/development/libraries/libarchive/default.nix
Yury G. Kudryashov dc2b4f3ec7 libarchive added
svn path=/nixpkgs/branches/stdenv-updates/; revision=10236
2008-01-22 13:08:32 +00:00

16 lines
328 B
Nix

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";
};
}