nixpkgs/pkgs/development/libraries/libarchive/default.nix

55 lines
1.6 KiB
Nix
Raw Normal View History

{
fetchurl, stdenv, pkgconfig,
acl, attr, bzip2, e2fsprogs, libxml2, lzo, openssl, sharutils, xz, zlib,
# Optional but increases closure only negligibly.
xarSupport ? true,
}:
assert xarSupport -> libxml2 != null;
stdenv.mkDerivation rec {
name = "libarchive-${version}";
2017-03-11 06:09:35 +00:00
version = "3.3.1";
src = fetchurl {
url = "${meta.homepage}/downloads/${name}.tar.gz";
2017-03-11 06:09:35 +00:00
sha256 = "1rr40hxlm9vy5z2zb5w7pyfkgd1a4s061qapm83s19accb8mpji9";
};
2016-09-19 13:33:25 +01:00
outputs = [ "out" "lib" "dev" ];
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ sharutils zlib bzip2 openssl xz lzo ]
++ stdenv.lib.optionals stdenv.isLinux [ e2fsprogs attr acl ]
++ stdenv.lib.optional xarSupport libxml2;
# Without this, pkgconfig-based dependencies are unhappy
propagatedBuildInputs = stdenv.lib.optionals stdenv.isLinux [ attr acl ];
configureFlags = stdenv.lib.optional (!xarSupport) "--without-xml2";
2014-10-29 22:45:15 +00:00
preBuild = if stdenv.isCygwin then ''
echo "#include <windows.h>" >> config.h
'' else null;
2015-07-28 14:22:40 +01:00
preFixup = ''
2016-09-19 13:33:25 +01:00
sed -i $lib/lib/libarchive.la \
-e 's|-lcrypto|-L${openssl.out}/lib -lcrypto|' \
2015-09-25 13:06:23 +01:00
-e 's|-llzo2|-L${lzo}/lib -llzo2|'
2015-07-28 14:22:40 +01:00
'';
meta = {
2012-10-21 06:17:14 +01:00
description = "Multi-format archive and compression library";
longDescription = ''
This library has code for detecting and reading many archive formats and
compressions formats including (but not limited to) tar, shar, cpio, zip, and
2016-09-19 13:33:25 +01:00
compressed with gzip, bzip2, lzma, xz, ...
2012-10-21 06:17:14 +01:00
'';
homepage = http://libarchive.org;
2012-10-21 06:17:14 +01:00
license = stdenv.lib.licenses.bsd3;
platforms = with stdenv.lib.platforms; all;
maintainers = with stdenv.lib.maintainers; [ jcumming ];
};
}