Unverified Commit 1cf46c7e authored by éclairevoyant's avatar éclairevoyant
Browse files

furmark: fix version to pass release checks

parent 1ced6b16
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -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};