mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 07:53:19 +00:00
52bf1163fa
In preparation to eliminate the lib output for the unwrapped clang, use `lib.getLib` to access the `lib` output.
67 lines
1.7 KiB
Nix
67 lines
1.7 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchurl
|
|
, autoPatchelfHook
|
|
, addDriverRunpath
|
|
, makeWrapper
|
|
, ocl-icd
|
|
, vulkan-loader
|
|
}:
|
|
|
|
let
|
|
inherit (stdenv.hostPlatform.uname) processor;
|
|
version = "6.3.0";
|
|
sources = {
|
|
"x86_64-linux" = {
|
|
url = "https://cdn.geekbench.com/Geekbench-${version}-Linux.tar.gz";
|
|
hash = "sha256-AXJ5mXGc1RWnIkB13KtIdt7vKETEXowunzQZciQDnzs=";
|
|
};
|
|
"aarch64-linux" = {
|
|
url = "https://cdn.geekbench.com/Geekbench-${version}-LinuxARMPreview.tar.gz";
|
|
hash = "sha256-fbf01qa9wx3k9j8AEqv38fAM3F9tZOcnpH/wa/9rawQ=";
|
|
};
|
|
};
|
|
geekbench_avx2 = lib.optionalString stdenv.hostPlatform.isx86_64 "geekbench_avx2";
|
|
in
|
|
stdenv.mkDerivation {
|
|
inherit version;
|
|
pname = "geekbench";
|
|
|
|
src = fetchurl (sources.${stdenv.system} or (throw "unsupported system ${stdenv.hostPlatform.system}"));
|
|
|
|
dontConfigure = true;
|
|
dontBuild = true;
|
|
|
|
nativeBuildInputs = [ autoPatchelfHook makeWrapper ];
|
|
|
|
buildInputs = [ (lib.getLib stdenv.cc.cc) ];
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
mkdir -p $out/bin
|
|
cp -r geekbench.plar geekbench-workload.plar geekbench6 geekbench_${processor} ${geekbench_avx2} $out/bin
|
|
|
|
for f in geekbench6 geekbench_${processor} ${geekbench_avx2} ; do
|
|
wrapProgram $out/bin/$f \
|
|
--prefix LD_LIBRARY_PATH : "${lib.makeLibraryPath [
|
|
addDriverRunpath.driverLink
|
|
ocl-icd
|
|
vulkan-loader
|
|
]}"
|
|
done
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Cross-platform benchmark";
|
|
homepage = "https://geekbench.com/";
|
|
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
|
|
license = licenses.unfree;
|
|
maintainers = with maintainers; [ michalrus asininemonkey ];
|
|
platforms = builtins.attrNames sources;
|
|
mainProgram = "geekbench6";
|
|
};
|
|
}
|