zstd: 0.7.5 -> 1.0.0

Also updated to use the new repository location under facebook organization.
This commit is contained in:
Susan Potter 2016-09-03 15:52:17 -05:00
parent a785cec01b
commit 766a018453

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.