mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
lz4 127 -> 128
Tests now fail when run in parallel. Don't.
This commit is contained in:
parent
224ed7e798
commit
f97f3d7a1b
1 changed files with 3 additions and 4 deletions
|
@ -1,14 +1,12 @@
|
|||
{ stdenv, fetchurl, valgrind }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
# The r127 source still calls itself r126 everywhere, but I'm not going to
|
||||
# patch over such silly cosmetic oversights in an official release. -- nckx
|
||||
version = "127";
|
||||
version = "128";
|
||||
name = "lz4-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/Cyan4973/lz4/archive/r${version}.tar.gz";
|
||||
sha256 = "0hvbbr07j4hfix4dn4xw4fsmkr5s02bj596fn0i15d1i49xby2aj";
|
||||
sha256 = "1lf7a0gqm2q7p1qs28lmajmls3pwfk2p0w3hljjlmshbkndaj26b";
|
||||
};
|
||||
|
||||
# valgrind is required only by `make test`
|
||||
|
@ -20,6 +18,7 @@ stdenv.mkDerivation rec {
|
|||
|
||||
doCheck = true;
|
||||
checkTarget = "test";
|
||||
checkFlags = "-j1"; # required since version 128
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Extremely fast compression algorithm";
|
||||
|
|
Loading…
Reference in a new issue