Merge #313741: furmark: fix version to pass release checks

This commit is contained in:
Vladimír Čunát 2024-05-22 21:19:07 +02:00
commit 67e269e2c0
No known key found for this signature in database
GPG Key ID: E747DF1F9575A3AA

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};