geekbench: 6.3.0 -> 6.4.0

This commit is contained in:
emaryn 2025-04-24 12:26:03 +08:00
parent b7d20dbed1
commit 55295b8aa2

View File

@ -11,15 +11,15 @@
let let
inherit (stdenv.hostPlatform.uname) processor; inherit (stdenv.hostPlatform.uname) processor;
version = "6.3.0"; version = "6.4.0";
sources = { sources = {
"x86_64-linux" = { "x86_64-linux" = {
url = "https://cdn.geekbench.com/Geekbench-${version}-Linux.tar.gz"; url = "https://cdn.geekbench.com/Geekbench-${version}-Linux.tar.gz";
hash = "sha256-AXJ5mXGc1RWnIkB13KtIdt7vKETEXowunzQZciQDnzs="; hash = "sha256-Q4MwU3dIFheKKSMxzCBZI8XoForaN41BuRGVMhJaUKw=";
}; };
"aarch64-linux" = { "aarch64-linux" = {
url = "https://cdn.geekbench.com/Geekbench-${version}-LinuxARMPreview.tar.gz"; url = "https://cdn.geekbench.com/Geekbench-${version}-LinuxARMPreview.tar.gz";
hash = "sha256-fbf01qa9wx3k9j8AEqv38fAM3F9tZOcnpH/wa/9rawQ="; hash = "sha256-PZ95w2X4sqTLZGZ5wygt7WjSK4Gfgtdh/UCPo+8Ysc8=";
}; };
}; };
geekbench_avx2 = lib.optionalString stdenv.hostPlatform.isx86_64 "geekbench_avx2"; geekbench_avx2 = lib.optionalString stdenv.hostPlatform.isx86_64 "geekbench_avx2";
@ -62,12 +62,12 @@ stdenv.mkDerivation {
runHook postInstall runHook postInstall
''; '';
meta = with lib; { meta = {
description = "Cross-platform benchmark"; description = "Cross-platform benchmark";
homepage = "https://geekbench.com/"; homepage = "https://geekbench.com/";
sourceProvenance = with sourceTypes; [ binaryNativeCode ]; sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
license = licenses.unfree; license = lib.licenses.unfree;
maintainers = with maintainers; [ maintainers = with lib.maintainers; [
michalrus michalrus
asininemonkey asininemonkey
]; ];