furmark: fix eval on unsupported systems

This commit is contained in:
liberodark
2026-08-10 16:27:04 +02:00
parent d6d4a06658
commit 1e5a4ba362

View File

@@ -47,9 +47,7 @@ let
in
stdenv.mkDerivation (finalAttrs: {
pname = "furmark";
version =
versions.${stdenv.hostPlatform.system}
or (throw "Furmark is not available on ${stdenv.hostPlatform.system}");
version = versions.${stdenv.hostPlatform.system} or versions.x86_64-linux;
src = fetchurl sources.${stdenv.hostPlatform.system};