libarchive added
svn path=/nixpkgs/branches/stdenv-updates/; revision=10236
This commit is contained in:
parent
dc15788487
commit
dc2b4f3ec7
15
pkgs/development/libraries/libarchive/default.nix
Normal file
15
pkgs/development/libraries/libarchive/default.nix
Normal 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";
|
||||
};
|
||||
}
|
@ -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;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user