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

66 lines
2 KiB
Nix
Raw Normal View History

{
fetchFromGitHub, lib, stdenv, pkg-config, autoreconfHook,
acl, attr, bzip2, e2fsprogs, libxml2, lzo, openssl, sharutils, xz, zlib, zstd,
2020-10-29 00:38:45 +00:00
# Optional but increases closure only negligibly. Also, while libxml2
# builds fine on windows, but libarchive has trouble linking windows
# things it depends on for some reason.
xarSupport ? stdenv.hostPlatform.isUnix,
}:
assert xarSupport -> libxml2 != null;
stdenv.mkDerivation rec {
pname = "libarchive";
2021-01-19 18:12:21 +00:00
version = "3.5.1";
src = fetchFromGitHub {
owner = "libarchive";
repo = "libarchive";
rev = "v${version}";
2021-01-19 18:12:21 +00:00
sha256 = "sha256-RFPhe4PCq8OLwa6c7ir+5u9jBsUxS5M/fcZYAG9W6R0=";
};
2016-09-19 12:33:25 +00:00
outputs = [ "out" "lib" "dev" ];
nativeBuildInputs = [ pkg-config autoreconfHook ];
2020-10-29 00:38:45 +00:00
buildInputs =
lib.optional stdenv.hostPlatform.isUnix sharutils
2020-10-29 00:38:45 +00:00
++ [ zlib bzip2 openssl xz lzo zstd ]
++ lib.optionals stdenv.isLinux [ e2fsprogs attr acl ]
++ lib.optional xarSupport libxml2;
# Without this, pkg-config-based dependencies are unhappy
propagatedBuildInputs = lib.optionals stdenv.isLinux [ attr acl ];
configureFlags = 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;
doCheck = false; # fails
2015-07-28 13:22:40 +00:00
preFixup = ''
2016-09-19 12:33:25 +00:00
sed -i $lib/lib/libarchive.la \
-e 's|-lcrypto|-L${openssl.out}/lib -lcrypto|' \
2015-09-25 12:06:23 +00:00
-e 's|-llzo2|-L${lzo}/lib -llzo2|'
2015-07-28 13:22:40 +00:00
'';
2018-06-04 12:48:39 +00:00
enableParallelBuilding = true;
meta = {
2012-10-21 05:17:14 +00: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 12:33:25 +00:00
compressed with gzip, bzip2, lzma, xz, ...
2012-10-21 05:17:14 +00:00
'';
homepage = "http://libarchive.org";
2020-12-02 17:19:06 +00:00
changelog = "https://github.com/libarchive/libarchive/releases/tag/v${version}";
license = lib.licenses.bsd3;
platforms = with lib.platforms; all;
maintainers = with lib.maintainers; [ jcumming ];
};
}