uuu: fix passthru.updateScript version's regex to proper match the version (#369752)

This commit is contained in:
Thiago Kenji Okada
2025-04-11 01:11:39 +01:00
committed by GitHub
+1 -1
View File
@@ -30,7 +30,7 @@ stdenv.mkDerivation (finalAttrs: {
passthru.updateScript = nix-update-script {
extraArgs = [
"--version-regex"
"uuu_\\([0-9.]+\\)"
"uuu_([0-9.]+)"
];
};