mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
zstd: 1.4.0 -> 1.4.1
This commit is contained in:
parent
863f821bdf
commit
d5ce2a186c
1 changed files with 6 additions and 5 deletions
|
@ -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 ];
|
||||
|
|
Loading…
Reference in a new issue