Merge remote-tracking branch 'upstream/master' into hardened-stdenv

This commit is contained in:
Robin Gloster
2016-07-15 14:41:01 +00:00
1603 changed files with 132258 additions and 39568 deletions
+1 -1
View File
@@ -31,7 +31,7 @@ stdenv.mkDerivation rec {
meta = {
homepage = "http://www.bzip.org";
description = "high-quality data compression program";
description = "High-quality data compression program";
platforms = stdenv.lib.platforms.all;
maintainers = [];
+1 -1
View File
@@ -10,7 +10,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; {
homepage = http://lbzip2.org/;
description = "parallel bzip2 compression utility";
description = "Parallel bzip2 compression utility";
license = licenses.gpl3;
maintainers = with maintainers; [ abbradar ];
platforms = platforms.unix;
+2 -2
View File
@@ -1,12 +1,12 @@
{stdenv, fetchurl, zlib, lzo, bzip2, nasm, perl}:
stdenv.mkDerivation rec {
version = "0.621";
version = "0.630";
name = "lrzip-${version}";
src = fetchurl {
url = "http://ck.kolivas.org/apps/lrzip/${name}.tar.bz2";
sha256 = "0szb1habydj9fwwrhgpjfws6v7hdphnqc5527i0vvc5rx2z6zhii";
sha256 = "01ykxliqw4cavx9f2gawxfa9wf52cjy1qx28cnkrh6i3lfzzcq94";
};
buildInputs = [ zlib lzo bzip2 nasm perl ];
+30
View File
@@ -0,0 +1,30 @@
{ stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
name = "lzfse-${version}";
version = "2016-06-21";
src = fetchFromGitHub {
owner = "lzfse";
repo = "lzfse";
rev = "45912281e3945a09c6ebfa8c6629f6906a99fc29";
sha256 = "1wbh3x874fjn548g1hw4bm7lkk60vlvy8ph0wsjkzcx8873hwj7h";
};
makeFlags = [ "INSTALL_PREFIX=$(out)" ];
enableParallelBuilding = false; #bug
meta = with stdenv.lib; {
homepage = https://github.com/lzfse/lzfse;
description = "a reference C implementation of the LZFSE compressor";
longDescription = ''
This is a reference C implementation of the LZFSE compressor introduced in the Compression library with OS X 10.11 and iOS 9.
LZFSE is a Lempel-Ziv style data compression algorithm using Finite State Entropy coding.
It targets similar compression rates at higher compression and decompression speed compared to deflate using zlib.
'';
platforms = platforms.linux;
license = licenses.bsd3;
maintainers = with maintainers; [ ];
};
}
+1 -1
View File
@@ -16,7 +16,7 @@ stdenv.mkDerivation rec {
meta = {
homepage = "http://www.nongnu.org/lzip/lzip.html";
description = "a lossless data compressor based on the LZMA algorithm";
description = "A lossless data compressor based on the LZMA algorithm";
license = stdenv.lib.licenses.gpl3Plus;
platforms = stdenv.lib.platforms.unix;
};
+3 -3
View File
@@ -3,10 +3,10 @@
stdenv.mkDerivation rec {
name = "zstd-${version}";
version = "0.6.1";
version = "0.7.3";
src = fetchFromGitHub {
sha256 = "19pp2sjrv8qwzfc9c1mf0idhkicjhr41fsc9d1fyncc34f9riavl";
sha256 = "1kdz1mk2lgf46dc7afjzdyzpdxng2cwirhpm1wsj8dy929hi3687";
rev = "v${version}";
repo = "zstd";
owner = "Cyan4973";
@@ -39,7 +39,7 @@ stdenv.mkDerivation rec {
# The licence of the CLI programme is GPLv2+, that of the library BSD-2.
license = with licenses; [ gpl2Plus bsd2 ];
platforms = platforms.linux;
platforms = platforms.unix;
maintainers = with maintainers; [ nckx ];
};
}