From bc2f01b11a16e294e9fdb4287902fa0f34c89757 Mon Sep 17 00:00:00 2001 From: Tom Herbers Date: Tue, 7 Jul 2026 18:35:25 +0200 Subject: [PATCH] ttl: disable update check The update-check of ttl is now a feature. To deselect this we have to disable all default features. --- pkgs/by-name/tt/ttl/package.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/by-name/tt/ttl/package.nix b/pkgs/by-name/tt/ttl/package.nix index 9414fbbf0929..a987fc3d23e6 100644 --- a/pkgs/by-name/tt/ttl/package.nix +++ b/pkgs/by-name/tt/ttl/package.nix @@ -27,6 +27,9 @@ rustPlatform.buildRustPackage (finalAttrs: { doInstallCheck = true; + # opt ouf of default features to deselect the update-check feature + buildNoDefaultFeatures = true; + postInstall = '' installShellCompletion --cmd ttl \ --bash <($out/bin/ttl --completions bash) \