From e9b4856537bf3a6c3a24a4e151ab275066f40b39 Mon Sep 17 00:00:00 2001 From: Donovan Glover Date: Tue, 31 Oct 2023 11:16:53 -0400 Subject: [PATCH] thud: add passthru.updateScript --- pkgs/by-name/th/thud/package.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/by-name/th/thud/package.nix b/pkgs/by-name/th/thud/package.nix index ae64435a3c2c..5a4d3f68b2a5 100644 --- a/pkgs/by-name/th/thud/package.nix +++ b/pkgs/by-name/th/thud/package.nix @@ -2,6 +2,7 @@ , rustPlatform , fetchFromGitHub , installShellFiles +, nix-update-script }: rustPlatform.buildRustPackage rec { @@ -33,6 +34,8 @@ rustPlatform.buildRustPackage rec { --zsh <(cat target/completions/_thud) ''; + passthru.updateScript = nix-update-script { }; + meta = with lib; { description = "Generate directory thumbnails for GTK-based file browsers from images inside them"; homepage = "https://github.com/donovanglover/thud";