mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
lzbench: 20170208 -> 1.8
This commit is contained in:
parent
d571ad2748
commit
de1411f0d4
1 changed files with 5 additions and 6 deletions
|
@ -1,19 +1,18 @@
|
|||
{ stdenv, fetchFromGitHub }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "lzbench-20170208";
|
||||
pname = "lzbench";
|
||||
version = "1.8";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "inikep";
|
||||
repo = "lzbench";
|
||||
rev = "d5e9b58";
|
||||
sha256 = "16xj5fldwl639f0ys5rx54csbfvf35ja34bdl5m068hdn6dr47r5";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "0gxw9b3yjj3z2b1y9mx3yfhklyxpfmb8fjf9mfpg9hlbr9mcpff3";
|
||||
};
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
buildInputs = stdenv.lib.optionals stdenv.isLinux [ stdenv.glibc.static ];
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out/bin
|
||||
cp lzbench $out/bin
|
||||
|
|
Loading…
Reference in a new issue