From 3bfcc7e5043b2772b7ba401dc2f212e24434a0f8 Mon Sep 17 00:00:00 2001 From: klea Date: Sat, 22 Aug 2026 10:01:04 +0000 Subject: [PATCH] frogatto: fix invalid unstable version scheme As part of https://github.com/NixOS/nixpkgs/issues/541820 Both the game, and the engine seem to have a 4.0.0 version, but it was made 2023-04-17, when the version we're using is older, so 0 it is. Those releases are: - https://github.com/frogatto/frogatto/releases/tag/4.0.0 - https://github.com/anura-engine/anura/releases/tag/v4.0.0 The game has a 1.3.1 version, here: https://github.com/frogatto/frogatto/releases/tag/1.3.1 --- pkgs/by-name/fr/frogatto/data.nix | 2 +- pkgs/by-name/fr/frogatto/engine.nix | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/fr/frogatto/data.nix b/pkgs/by-name/fr/frogatto/data.nix index c1b43013d178..c163739b566b 100644 --- a/pkgs/by-name/fr/frogatto/data.nix +++ b/pkgs/by-name/fr/frogatto/data.nix @@ -6,7 +6,7 @@ stdenv.mkDerivation { pname = "frogatto-data"; - version = "unstable-2023-02-27"; + version = "1.3.1-unstable-2023-02-27"; src = fetchFromGitHub { owner = "frogatto"; diff --git a/pkgs/by-name/fr/frogatto/engine.nix b/pkgs/by-name/fr/frogatto/engine.nix index ba6ab8eef203..1e6e6d86e26f 100644 --- a/pkgs/by-name/fr/frogatto/engine.nix +++ b/pkgs/by-name/fr/frogatto/engine.nix @@ -19,7 +19,7 @@ stdenv.mkDerivation { pname = "anura-engine"; - version = "unstable-2023-02-27"; + version = "0-unstable-2023-02-27"; src = fetchFromGitHub { owner = "anura-engine";