2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub }:
|
2017-02-27 21:36:27 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2020-01-27 01:49:23 +00:00
|
|
|
pname = "lzbench";
|
2020-09-05 08:00:27 +01:00
|
|
|
version = "1.8.1";
|
2017-02-27 21:36:27 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "inikep";
|
2020-01-27 01:49:23 +00:00
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2020-09-05 08:00:27 +01:00
|
|
|
sha256 = "19zlvcjb1qg4fx30rrp6m650660y35736j8szvdxmqh9ipkisyia";
|
2017-02-27 21:36:27 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out/bin
|
|
|
|
cp lzbench $out/bin
|
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2017-02-27 21:36:27 +00:00
|
|
|
inherit (src.meta) homepage;
|
|
|
|
description = "In-memory benchmark of open-source LZ77/LZSS/LZMA compressors";
|
|
|
|
license = licenses.free;
|
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
}
|