pixz: init at 1.0.6
This commit is contained in:
parent
492541c378
commit
19aa4f0a6b
36
pkgs/tools/compression/pixz/default.nix
Normal file
36
pkgs/tools/compression/pixz/default.nix
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
{
|
||||||
|
stdenv, fetchFromGitHub, autoconf, automake, libtool, pkgconfig
|
||||||
|
, asciidoc, libxslt, libxml2, docbook_xml_dtd_45, docbook_xml_xslt
|
||||||
|
, libarchive, lzma
|
||||||
|
}:
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
baseName = "pixz";
|
||||||
|
version = "1.0.6";
|
||||||
|
name = "${baseName}-${version}";
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
autoconf automake libtool pkgconfig asciidoc libxslt libxml2
|
||||||
|
docbook_xml_dtd_45 docbook_xml_xslt
|
||||||
|
libarchive lzma
|
||||||
|
];
|
||||||
|
preBuild = ''
|
||||||
|
echo "XML_CATALOG_FILES='$XML_CATALOG_FILES'"
|
||||||
|
'';
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "vasi";
|
||||||
|
repo = baseName;
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "0q61wqg2yxrgd4nc7256mf7izp92is29ll3rax1cxr6fj9jrd8b7";
|
||||||
|
};
|
||||||
|
preConfigure = ''
|
||||||
|
./autogen.sh
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
inherit version;
|
||||||
|
description = ''A parallel compressor/decompressor for xz format'';
|
||||||
|
license = stdenv.lib.licenses.bsd2;
|
||||||
|
maintainers = [stdenv.lib.maintainers.raskin];
|
||||||
|
platforms = stdenv.lib.platforms.linux;
|
||||||
|
};
|
||||||
|
}
|
@ -1815,6 +1815,8 @@ let
|
|||||||
|
|
||||||
pigz = callPackage ../tools/compression/pigz { };
|
pigz = callPackage ../tools/compression/pigz { };
|
||||||
|
|
||||||
|
pixz = callPackage ../tools/compression/pixz { };
|
||||||
|
|
||||||
pxz = callPackage ../tools/compression/pxz { };
|
pxz = callPackage ../tools/compression/pxz { };
|
||||||
|
|
||||||
hans = callPackage ../tools/networking/hans { };
|
hans = callPackage ../tools/networking/hans { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user