furmark: fix version to pass release checks

This commit is contained in:
éclairevoyant
2024-05-22 13:48:17 -04:00
parent 1ced6b1623
commit 1cf46c7e17
+3 -1
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};