Bump libarchive to 2.8.3

Fixes kdeutils-4.4.2 compilation

svn path=/nixpkgs/trunk/; revision=20922
This commit is contained in:
Yury G. Kudryashov 2010-04-01 18:50:43 +00:00
parent 4a6cfd435e
commit c3e38d11f0
2 changed files with 8 additions and 6 deletions

View file

@ -1,14 +1,15 @@
{fetchurl, stdenv, zlib, bzip2, e2fsprogs, sharutils}:
{fetchurl, stdenv, acl, openssl, libxml2, attr, zlib, bzip2, xz, e2fsprogs
, sharutils}:
stdenv.mkDerivation rec {
name = "libarchive-2.4.12";
name = "libarchive-2.8.3";
src = fetchurl {
url = "${meta.homepage}/src/${name}.tar.gz";
sha256 = "133kxx1wfangrhy6rcpqlqib7i45qxj8pcp3i9n574cwfx41swy4";
url = "http://libarchive.googlecode.com/files/${name}.tar.gz";
sha256 = "16095d15334b3c8dbb02db5af3d415f12c1c3bdd4eb43af7bbc36ab7572c0b7a";
};
propagatedBuildInputs = [zlib bzip2 e2fsprogs];
propagatedBuildInputs = [acl libxml2 zlib bzip2 e2fsprogs xz attr openssl];
buildInputs = [sharutils];

View file

@ -4133,7 +4133,8 @@ let
};
libarchive = import ../development/libraries/libarchive {
inherit fetchurl stdenv zlib bzip2 e2fsprogs sharutils;
inherit fetchurl stdenv acl zlib bzip2 e2fsprogs xz sharutils libxml2
openssl attr;
};
libassuan = import ../development/libraries/libassuan {