Merge branch 'master' into closure-size

TODO: there was more significant refactoring of qtbase and plasma 5.5
on master, and I'm deferring pointing to correct outputs to later.
This commit is contained in:
Vladimír Čunát
2015-12-31 09:53:02 +01:00
951 changed files with 117997 additions and 19014 deletions
+36
View 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;
};
}