furmark: fix version to pass release checks

(cherry picked from commit 1cf46c7e17)
This commit is contained in:
éclairevoyant
2024-05-22 13:30:45 -04:00
committed by github-actions[bot]
parent 271973a5c7
commit b7edf93455

View File

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