lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

lzbench: init at 20170208

In-memory benchmark of several up-to-date compressors.

Signed-off-by: Lluís Batlle i Rossell <viric@viric.name>

+30
+28
pkgs/tools/compression/lzbench/default.nix
··· 1 + { stdenv, fetchFromGitHub, glibc }: 2 + 3 + stdenv.mkDerivation rec { 4 + name = "lzbench-20170208"; 5 + 6 + src = fetchFromGitHub { 7 + owner = "inikep"; 8 + repo = "lzbench"; 9 + rev = "d5e9b58"; 10 + sha256 = "16xj5fldwl639f0ys5rx54csbfvf35ja34bdl5m068hdn6dr47r5"; 11 + }; 12 + 13 + enableParallelBuilding = true; 14 + 15 + buildInputs = stdenv.lib.optionals stdenv.isLinux [ stdenv.glibc.static ]; 16 + 17 + installPhase = '' 18 + mkdir -p $out/bin 19 + cp lzbench $out/bin 20 + ''; 21 + 22 + meta = with stdenv.lib; { 23 + inherit (src.meta) homepage; 24 + description = "In-memory benchmark of open-source LZ77/LZSS/LZMA compressors"; 25 + license = licenses.free; 26 + platforms = platforms.all; 27 + }; 28 + }
+2
pkgs/top-level/all-packages.nix
··· 2769 2769 2770 2770 lz4 = callPackage ../tools/compression/lz4 { }; 2771 2771 2772 + lzbench = callPackage ../tools/compression/lzbench { }; 2773 + 2772 2774 lzop = callPackage ../tools/compression/lzop { }; 2773 2775 2774 2776 macchanger = callPackage ../os-specific/linux/macchanger { };