sudo-rs: add regex to avoid ryantm PRs for the -man releases

We build the manpages ourselves, so we don't need to use those `-man`
releases.
This commit is contained in:
r-vdp
2025-06-17 16:08:34 +02:00
parent 5f8808fa93
commit ac55f4a31a
+5 -1
View File
@@ -75,7 +75,11 @@ rustPlatform.buildRustPackage (finalAttrs: {
];
passthru = {
updateScript = nix-update-script { };
updateScript = nix-update-script {
extraArgs = [
"--version-regex=^v([0-9]+\\.[0-9]+\\.[0-9])$"
];
};
tests = nixosTests.sudo-rs;
};