2016-08-19 05:56:39 +02:00
|
|
|
{
|
2019-07-20 23:53:56 +02:00
|
|
|
fetchFromGitHub, stdenv, pkgconfig, autoreconfHook,
|
2020-06-04 15:30:23 +02:00
|
|
|
acl, attr, bzip2, e2fsprogs, libxml2, lzo, openssl, sharutils, xz, zlib, zstd,
|
2016-08-19 05:56:39 +02:00
|
|
|
|
2016-09-11 11:51:04 +02:00
|
|
|
# Optional but increases closure only negligibly.
|
|
|
|
xarSupport ? true,
|
2016-08-19 05:56:39 +02:00
|
|
|
}:
|
|
|
|
|
|
|
|
assert xarSupport -> libxml2 != null;
|
2009-04-22 01:18:09 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "libarchive";
|
2020-05-20 20:57:34 +02:00
|
|
|
version = "3.4.3";
|
2009-04-22 01:18:09 +02:00
|
|
|
|
2019-07-20 23:53:56 +02:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "libarchive";
|
|
|
|
repo = "libarchive";
|
|
|
|
rev = "v${version}";
|
2020-05-20 20:57:34 +02:00
|
|
|
sha256 = "1y0v03p6zyv6plr2p0pid1qfgmk8hd427spj8xa93mcdmq5yc3s0";
|
2009-04-22 01:18:09 +02:00
|
|
|
};
|
|
|
|
|
2016-09-19 14:33:25 +02:00
|
|
|
outputs = [ "out" "lib" "dev" ];
|
|
|
|
|
2019-07-20 23:53:56 +02:00
|
|
|
nativeBuildInputs = [ pkgconfig autoreconfHook ];
|
2020-06-04 15:30:23 +02:00
|
|
|
buildInputs = [ sharutils zlib bzip2 openssl xz lzo zstd ]
|
2016-08-19 05:56:39 +02:00
|
|
|
++ stdenv.lib.optionals stdenv.isLinux [ e2fsprogs attr acl ]
|
|
|
|
++ stdenv.lib.optional xarSupport libxml2;
|
2011-03-25 13:55:22 +01:00
|
|
|
|
2016-04-29 05:29:30 +02:00
|
|
|
# Without this, pkgconfig-based dependencies are unhappy
|
|
|
|
propagatedBuildInputs = stdenv.lib.optionals stdenv.isLinux [ attr acl ];
|
|
|
|
|
2016-08-19 05:56:39 +02:00
|
|
|
configureFlags = stdenv.lib.optional (!xarSupport) "--without-xml2";
|
|
|
|
|
2014-10-29 23:45:15 +01:00
|
|
|
preBuild = if stdenv.isCygwin then ''
|
|
|
|
echo "#include <windows.h>" >> config.h
|
|
|
|
'' else null;
|
|
|
|
|
2018-04-25 05:20:18 +02:00
|
|
|
doCheck = false; # fails
|
|
|
|
|
2015-07-28 15:22:40 +02:00
|
|
|
preFixup = ''
|
2016-09-19 14:33:25 +02:00
|
|
|
sed -i $lib/lib/libarchive.la \
|
2015-10-15 01:07:37 +02:00
|
|
|
-e 's|-lcrypto|-L${openssl.out}/lib -lcrypto|' \
|
2015-09-25 14:06:23 +02:00
|
|
|
-e 's|-llzo2|-L${lzo}/lib -llzo2|'
|
2015-07-28 15:22:40 +02:00
|
|
|
'';
|
|
|
|
|
2018-06-04 14:48:39 +02:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2009-04-22 01:18:09 +02:00
|
|
|
meta = {
|
2012-10-21 07:17:14 +02: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 14:33:25 +02:00
|
|
|
compressed with gzip, bzip2, lzma, xz, ...
|
2012-10-21 07:17:14 +02:00
|
|
|
'';
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "http://libarchive.org";
|
2012-10-21 07:17:14 +02:00
|
|
|
license = stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = with stdenv.lib.platforms; all;
|
|
|
|
maintainers = with stdenv.lib.maintainers; [ jcumming ];
|
2009-04-22 01:18:09 +02:00
|
|
|
};
|
|
|
|
}
|