Merge pull request #18274 from mbbx6spp/update-zstd-to-1.0.0

zstd: 0.7.5 -> 1.0.0
This commit is contained in:
Joachim F 2016-09-03 23:50:14 +02:00 committed by GitHub
commit e03ea3871c

View File

@ -3,13 +3,13 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "zstd-${version}"; name = "zstd-${version}";
version = "0.7.5"; version = "1.0.0";
src = fetchFromGitHub { src = fetchFromGitHub {
sha256 = "07b4gmmkk2b28vmmhcg8h2imzccav1qklgvbdg2k6nl9p88zwzkd"; sha256 = "0h8r8vlk8v28cxxgdp7h7dcygbpn8g95wffsvhzybxhfvkrlw6f2";
rev = "v${version}"; rev = "v${version}";
repo = "zstd"; repo = "zstd";
owner = "Cyan4973"; owner = "facebook";
}; };
# The Makefiles don't properly use file targets, but blindly rebuild # The Makefiles don't properly use file targets, but blindly rebuild
@ -33,7 +33,7 @@ stdenv.mkDerivation rec {
compression speed. Speed/ratio trade-off is configurable by small compression speed. Speed/ratio trade-off is configurable by small
increment, to fit different situations. Note however that decompression increment, to fit different situations. Note however that decompression
speed is preserved and remain roughly the same at all settings, a speed is preserved and remain roughly the same at all settings, a
property shared by most LZ compression algorithms, such as zlib. property shared by most LZ compression algorithms, such as zlib.
''; '';
homepage = http://www.zstd.net/; homepage = http://www.zstd.net/;
# The licence of the CLI programme is GPLv2+, that of the library BSD-2. # The licence of the CLI programme is GPLv2+, that of the library BSD-2.