about summary refs log tree commit diff
path: root/pkgs/tools/compression/lzbench
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@viric.name>2017-02-27 22:36:27 +0100
committerLluís Batlle i Rossell <viric@viric.name>2017-02-27 22:42:40 +0100
commit9e7ce9010c572fcaa41daf2ed821a01cf4f7335a (patch)
treeffa589343c492302a9766f492712fe45f9f8be36 /pkgs/tools/compression/lzbench
parent7992ce65fc46e7153480ac4211c7f65ae3ba6b37 (diff)
lzbench: init at 20170208
In-memory benchmark of several up-to-date compressors.

Signed-off-by: Lluís Batlle i Rossell <viric@viric.name>
Diffstat (limited to 'pkgs/tools/compression/lzbench')
-rw-r--r--pkgs/tools/compression/lzbench/default.nix28
1 files changed, 28 insertions, 0 deletions
diff --git a/pkgs/tools/compression/lzbench/default.nix b/pkgs/tools/compression/lzbench/default.nix
new file mode 100644
index 0000000000000..a38e0a67b2829
--- /dev/null
+++ b/pkgs/tools/compression/lzbench/default.nix
@@ -0,0 +1,28 @@
+{ stdenv, fetchFromGitHub, glibc }:
+
+stdenv.mkDerivation rec {
+  name = "lzbench-20170208";
+
+  src = fetchFromGitHub {
+    owner = "inikep";
+    repo = "lzbench";
+    rev = "d5e9b58";
+    sha256 = "16xj5fldwl639f0ys5rx54csbfvf35ja34bdl5m068hdn6dr47r5";
+  };
+
+  enableParallelBuilding = true;
+
+  buildInputs = stdenv.lib.optionals stdenv.isLinux [ stdenv.glibc.static ];
+
+  installPhase = ''
+    mkdir -p $out/bin
+    cp lzbench $out/bin
+  '';
+
+  meta = with stdenv.lib; {
+    inherit (src.meta) homepage;
+    description = "In-memory benchmark of open-source LZ77/LZSS/LZMA compressors";
+    license = licenses.free;
+    platforms = platforms.all;
+  };
+}