nixpkgs/pkgs/tools/misc/geekbench/default.nix

35 lines
970 B
Nix
Raw Normal View History

2017-08-07 23:28:12 +00:00
{ stdenv, fetchurl, makeWrapper }:
stdenv.mkDerivation rec {
name = "geekbench-${version}";
version = "4.4.0";
2017-08-07 23:28:12 +00:00
src = fetchurl {
2018-08-08 13:39:33 +00:00
url = "https://cdn.geekbench.com/Geekbench-${version}-Linux.tar.gz";
sha256 = "1awdr54vw29ah7aah2bxpy4qkqasxj67sqk6gir8ybnxb5hxm3ri";
2017-08-07 23:28:12 +00:00
};
dontConfigure = true;
dontBuild = true;
nativeBuildInputs = [ makeWrapper ];
installPhase = ''
mkdir -p $out/bin
2018-08-08 13:39:33 +00:00
cp -r geekbench.plar geekbench4 geekbench_x86_64 $out/bin
2017-08-07 23:28:12 +00:00
for f in geekbench4 geekbench_x86_64 ; do
patchelf --set-interpreter $(cat ${stdenv.cc}/nix-support/dynamic-linker) $out/bin/$f
wrapProgram $out/bin/$f --prefix LD_LIBRARY_PATH : "${stdenv.lib.makeLibraryPath [ stdenv.cc.cc.lib ]}"
done
'';
meta = with stdenv.lib; {
description = "Cross-platform benchmark";
2018-08-08 13:39:33 +00:00
homepage = https://geekbench.com/;
2017-08-07 23:28:12 +00:00
license = licenses.unfree;
maintainers = [ maintainers.michalrus ];
platforms = [ "x86_64-linux" ];
};
}