forked from mirrors/nixpkgs
libarchive: don't try to build e2fsprogs, attr, or acl unless running on Linux
These packages give errors when built on, say, Darwin. svn path=/nixpkgs/trunk/; revision=26510
This commit is contained in:
parent
dd123060c0
commit
0e5593b0f6
|
@ -9,10 +9,11 @@ stdenv.mkDerivation rec {
|
||||||
sha256 = "16095d15334b3c8dbb02db5af3d415f12c1c3bdd4eb43af7bbc36ab7572c0b7a";
|
sha256 = "16095d15334b3c8dbb02db5af3d415f12c1c3bdd4eb43af7bbc36ab7572c0b7a";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [acl libxml2 zlib bzip2 e2fsprogs xz attr openssl];
|
propagatedBuildInputs = [libxml2 zlib bzip2 xz openssl] ++
|
||||||
|
(if stdenv.isLinux then [e2fsprogs attr acl] else []);
|
||||||
|
|
||||||
buildInputs = [sharutils];
|
buildInputs = [sharutils];
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "A library for reading and writing streaming archives";
|
description = "A library for reading and writing streaming archives";
|
||||||
homepage = http://people.freebsd.org/~kientzle/libarchive;
|
homepage = http://people.freebsd.org/~kientzle/libarchive;
|
||||||
|
|
Loading…
Reference in a new issue