zstd: 1.1.3 -> 1.2.0
This commit is contained in:
parent
6fc56fa8d4
commit
cb1af17f53
@ -1,12 +1,12 @@
|
|||||||
{ stdenv, fetchFromGitHub
|
{ stdenv, fetchFromGitHub, gnugrep
|
||||||
, legacySupport ? false }:
|
, legacySupport ? false }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "zstd-${version}";
|
name = "zstd-${version}";
|
||||||
version = "1.1.3";
|
version = "1.2.0";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
sha256 = "1d46hs6pyq55izcmnk7hzvbl8iyxh7bp7qchc7rl8ay396ax2sd5";
|
sha256 = "01b5w4yrwa8lgnjyi42zxjhw8cfyh8yfhdsjr04y5qsblz0hv0zl";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
repo = "zstd";
|
repo = "zstd";
|
||||||
owner = "facebook";
|
owner = "facebook";
|
||||||
@ -24,6 +24,15 @@ stdenv.mkDerivation rec {
|
|||||||
"PREFIX=$(out)"
|
"PREFIX=$(out)"
|
||||||
];
|
];
|
||||||
|
|
||||||
|
preInstall = ''
|
||||||
|
substituteInPlace programs/zstdgrep \
|
||||||
|
--replace "=grep" "=${gnugrep}/bin/grep" \
|
||||||
|
--replace "=zstdcat" "=$out/bin/zstdcat"
|
||||||
|
|
||||||
|
substituteInPlace programs/zstdless \
|
||||||
|
--replace "zstdcat" "$out/bin/zstdcat"
|
||||||
|
'';
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "Zstandard real-time compression algorithm";
|
description = "Zstandard real-time compression algorithm";
|
||||||
longDescription = ''
|
longDescription = ''
|
||||||
@ -40,6 +49,6 @@ stdenv.mkDerivation rec {
|
|||||||
license = with licenses; [ gpl2Plus bsd2 ];
|
license = with licenses; [ gpl2Plus bsd2 ];
|
||||||
|
|
||||||
platforms = platforms.unix;
|
platforms = platforms.unix;
|
||||||
maintainers = with maintainers; [ nckx ];
|
maintainers = with maintainers; [ nckx orivej ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user