summary refs log tree commit diff
path: root/pkgs/tools/compression
diff options
context:
space:
mode:
authorOrivej Desh <orivej@gmx.fr>2019-07-21 00:11:44 +0000
committerOrivej Desh <orivej@gmx.fr>2019-07-21 00:11:44 +0000
commitd5ce2a186c168ccce155b2e48d151d23c50a6e9c (patch)
tree2a9ce895803764331a2d99d70db70e8f91b62d20 /pkgs/tools/compression
parent863f821bdf1a7c86e575855f603c41f41b7873ee (diff)
downloadnixpkgs-d5ce2a186c168ccce155b2e48d151d23c50a6e9c.tar
nixpkgs-d5ce2a186c168ccce155b2e48d151d23c50a6e9c.tar.gz
nixpkgs-d5ce2a186c168ccce155b2e48d151d23c50a6e9c.tar.bz2
nixpkgs-d5ce2a186c168ccce155b2e48d151d23c50a6e9c.tar.lz
nixpkgs-d5ce2a186c168ccce155b2e48d151d23c50a6e9c.tar.xz
nixpkgs-d5ce2a186c168ccce155b2e48d151d23c50a6e9c.tar.zst
nixpkgs-d5ce2a186c168ccce155b2e48d151d23c50a6e9c.zip
zstd: 1.4.0 -> 1.4.1
Diffstat (limited to 'pkgs/tools/compression')
-rw-r--r--pkgs/tools/compression/zstd/default.nix11
1 files changed, 6 insertions, 5 deletions
diff --git a/pkgs/tools/compression/zstd/default.nix b/pkgs/tools/compression/zstd/default.nix
index ff2589031b6..257396e0428 100644
--- a/pkgs/tools/compression/zstd/default.nix
+++ b/pkgs/tools/compression/zstd/default.nix
@@ -4,11 +4,11 @@
 , legacySupport ? false }:
 
 stdenv.mkDerivation rec {
-  name = "zstd-${version}";
-  version = "1.4.0";
+  pname = "zstd";
+  version = "1.4.1";
 
   src = fetchFromGitHub {
-    sha256 = "1gfxi3ymgavjfxh84rhfjan7l4pymwfrn051nwc7n0s3mxp09m6v";
+    sha256 = "1f2nvhsx1fsd6zbnwvc6bbrm9ghkcvamqqg79fxgk5284rc6nynv";
     rev = "v${version}";
     repo = "zstd";
     owner = "facebook";
@@ -40,6 +40,8 @@ stdenv.mkDerivation rec {
       --replace "zstdcat" "$out/bin/zstdcat"
   '';
 
+  enableParallelBuilding = true;
+
   meta = with stdenv.lib; {
     description = "Zstandard real-time compression algorithm";
     longDescription = ''
@@ -52,8 +54,7 @@ stdenv.mkDerivation rec {
       property shared by most LZ compression algorithms, such as zlib.
     '';
     homepage = https://facebook.github.io/zstd/;
-    # The licence of the CLI programme is GPLv2+, that of the library BSD-2.
-    license = with licenses; [ gpl2Plus bsd2 ];
+    license = with licenses; [ bsd3 ]; # Or, at your opinion, GPL-2.0-only.
 
     platforms = platforms.unix;
     maintainers = with maintainers; [ orivej ];