From 77dc43ebb3fd2751e2a615314dec940806d04460 Mon Sep 17 00:00:00 2001 From: OPNA2608 Date: Sat, 11 Apr 2026 17:00:11 +0200 Subject: [PATCH] sidplayfp: Ignore tags with letters in them I don't want to keep adding suffixes to this exclusion rule... Just ignore anything that has a letter in it. Leading `v` is stripped before the check, so this should work fine. --- pkgs/by-name/si/sidplayfp/package.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/by-name/si/sidplayfp/package.nix b/pkgs/by-name/si/sidplayfp/package.nix index ee3921edd4fb..391414fec8b8 100644 --- a/pkgs/by-name/si/sidplayfp/package.nix +++ b/pkgs/by-name/si/sidplayfp/package.nix @@ -72,7 +72,7 @@ stdenv.mkDerivation (finalAttrs: { }; updateScript = gitUpdater { rev-prefix = "v"; - ignoredVersions = "(a|rc)"; + ignoredVersions = "[a-zA-Z]"; }; };