mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
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
1 changed files with 4 additions and 3 deletions
|
@ -9,10 +9,11 @@ stdenv.mkDerivation rec {
|
|||
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];
|
||||
|
||||
|
||||
meta = {
|
||||
description = "A library for reading and writing streaming archives";
|
||||
homepage = http://people.freebsd.org/~kientzle/libarchive;
|
||||
|
|
Loading…
Reference in a new issue