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

28 lines
985 B
Nix
Raw Normal View History

2012-10-21 05:17:14 +00:00
{ fetchurl, stdenv, acl, openssl, libxml2, attr, zlib, bzip2, e2fsprogs, xz
, sharutils }:
stdenv.mkDerivation rec {
2012-10-21 05:17:14 +00:00
name = "libarchive-3.0.4";
src = fetchurl {
2012-10-21 05:17:14 +00:00
url = "https://github.com/downloads/libarchive/libarchive/${name}.tar.gz";
sha256 = "76e8d7c7b100ec4071e48c1b7d3f3ea1d22b39db3e45b7189f75b5ff4df90fac";
};
buildInputs = [ sharutils libxml2 zlib bzip2 openssl xz ] ++
stdenv.lib.optionals stdenv.isLinux [ e2fsprogs attr acl ];
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
compressed with gzip, bzip2, lzma, xz, ..
'';
homepage = http://libarchive.github.com/;
license = stdenv.lib.licenses.bsd3;
platforms = with stdenv.lib.platforms; all;
maintainers = with stdenv.lib.maintainers; [ jcumming ];
};
}