dprint: skip non-release tags in updateScript

This commit is contained in:
Kenichi Kamiya
2026-03-23 22:11:41 +09:00
parent f8a9f4e004
commit ade64eea52
+5 -1
View File
@@ -78,7 +78,11 @@ rustPlatform.buildRustPackage (finalAttrs: {
versionCheckKeepEnvironment = [ "HOME" ];
passthru = {
updateScript = nix-update-script { };
updateScript = nix-update-script {
# Follow upstream's release policy. Git tags are not enough for this package:
# https://github.com/dprint/dprint/issues/1113
extraArgs = [ "--use-github-releases" ];
};
};
meta = {