tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
geekbench: 6.3.0 -> 6.4.0
emaryn
9 months ago
55295b8a
b7d20dbe
+7
-7
1 changed file
expand all
collapse all
unified
split
pkgs
tools
misc
geekbench
6.nix
+7
-7
pkgs/tools/misc/geekbench/6.nix
···
11
11
12
12
let
13
13
inherit (stdenv.hostPlatform.uname) processor;
14
14
-
version = "6.3.0";
14
14
+
version = "6.4.0";
15
15
sources = {
16
16
"x86_64-linux" = {
17
17
url = "https://cdn.geekbench.com/Geekbench-${version}-Linux.tar.gz";
18
18
-
hash = "sha256-AXJ5mXGc1RWnIkB13KtIdt7vKETEXowunzQZciQDnzs=";
18
18
+
hash = "sha256-Q4MwU3dIFheKKSMxzCBZI8XoForaN41BuRGVMhJaUKw=";
19
19
};
20
20
"aarch64-linux" = {
21
21
url = "https://cdn.geekbench.com/Geekbench-${version}-LinuxARMPreview.tar.gz";
22
22
-
hash = "sha256-fbf01qa9wx3k9j8AEqv38fAM3F9tZOcnpH/wa/9rawQ=";
22
22
+
hash = "sha256-PZ95w2X4sqTLZGZ5wygt7WjSK4Gfgtdh/UCPo+8Ysc8=";
23
23
};
24
24
};
25
25
geekbench_avx2 = lib.optionalString stdenv.hostPlatform.isx86_64 "geekbench_avx2";
···
62
62
runHook postInstall
63
63
'';
64
64
65
65
-
meta = with lib; {
65
65
+
meta = {
66
66
description = "Cross-platform benchmark";
67
67
homepage = "https://geekbench.com/";
68
68
-
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
69
69
-
license = licenses.unfree;
70
70
-
maintainers = with maintainers; [
68
68
+
sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
69
69
+
license = lib.licenses.unfree;
70
70
+
maintainers = with lib.maintainers; [
71
71
michalrus
72
72
asininemonkey
73
73
];