zstd: 1.4.0 -> 1.4.1

This commit is contained in:
Orivej Desh 2019-07-21 00:11:44 +00:00
parent 863f821bdf
commit d5ce2a186c
1 changed files with 6 additions and 5 deletions

View File

@ -4,11 +4,11 @@
, legacySupport ? false }: , legacySupport ? false }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "zstd-${version}"; pname = "zstd";
version = "1.4.0"; version = "1.4.1";
src = fetchFromGitHub { src = fetchFromGitHub {
sha256 = "1gfxi3ymgavjfxh84rhfjan7l4pymwfrn051nwc7n0s3mxp09m6v"; sha256 = "1f2nvhsx1fsd6zbnwvc6bbrm9ghkcvamqqg79fxgk5284rc6nynv";
rev = "v${version}"; rev = "v${version}";
repo = "zstd"; repo = "zstd";
owner = "facebook"; owner = "facebook";
@ -40,6 +40,8 @@ stdenv.mkDerivation rec {
--replace "zstdcat" "$out/bin/zstdcat" --replace "zstdcat" "$out/bin/zstdcat"
''; '';
enableParallelBuilding = true;
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "Zstandard real-time compression algorithm"; description = "Zstandard real-time compression algorithm";
longDescription = '' longDescription = ''
@ -52,8 +54,7 @@ stdenv.mkDerivation rec {
property shared by most LZ compression algorithms, such as zlib. property shared by most LZ compression algorithms, such as zlib.
''; '';
homepage = https://facebook.github.io/zstd/; homepage = https://facebook.github.io/zstd/;
# The licence of the CLI programme is GPLv2+, that of the library BSD-2. license = with licenses; [ bsd3 ]; # Or, at your opinion, GPL-2.0-only.
license = with licenses; [ gpl2Plus bsd2 ];
platforms = platforms.unix; platforms = platforms.unix;
maintainers = with maintainers; [ orivej ]; maintainers = with maintainers; [ orivej ];