[Backport release-26.05] xfr: disable update check (#543818)

This commit is contained in:
nixpkgs-ci[bot]
2026-07-20 12:57:53 +00:00
committed by GitHub

View File

@@ -24,8 +24,16 @@ rustPlatform.buildRustPackage (finalAttrs: {
installShellFiles
versionCheckHook
];
doInstallCheck = true;
# opt ouf of default features to deselect the update-check feature
buildNoDefaultFeatures = true;
buildFeatures = [
"discovery"
];
postInstall = ''
installShellCompletion --cmd xfr \
--bash <($out/bin/xfr --completions bash) \