Merge pull request #264258 from donovanglover/thud-0.3.1

thud: 0.3.0 -> 0.3.1

authored by

Emily and committed by
GitHub
ea7d2a1d e528d086

+10 -7
+10 -7
pkgs/by-name/th/thud/package.nix
··· 2 2 , rustPlatform 3 3 , fetchFromGitHub 4 4 , installShellFiles 5 + , nix-update-script 5 6 }: 6 7 7 8 rustPlatform.buildRustPackage rec { 8 9 pname = "thud"; 9 - version = "0.3.0"; 10 + version = "0.3.1"; 10 11 11 12 src = fetchFromGitHub { 12 13 owner = "donovanglover"; 13 14 repo = "thud"; 14 15 rev = version; 15 - hash = "sha256-3MxmVKs0huXPnL9mqDniaIarkAvJmwSOMii2ntXtOos="; 16 + hash = "sha256-BmrJaZ1IKXjx4/QkBDZyXvTTaalfEOKsBp9ZCW8px7I="; 16 17 }; 17 18 18 - cargoHash = "sha256-Hk3HlcA253FAA9hw5p9W+Mvec84zLo7bEmM2/BbmjiM="; 19 + cargoHash = "sha256-rmVVdes7GuGV+ClqJGxNIrs7oSwe8/ZHFD6OfP/UW7A="; 19 20 20 21 nativeBuildInputs = [ 21 22 installShellFiles ··· 25 26 install -Dm644 assets/thud.thumbnailer $out/share/thumbnailers/thud.thumbnailer 26 27 substituteInPlace $out/share/thumbnailers/thud.thumbnailer --replace "thud" "$out/bin/thud" 27 28 28 - installManPage man/thud.1 29 + installManPage target/man/thud.1 29 30 30 31 installShellCompletion --cmd thud \ 31 - --bash <(cat completions/thud.bash) \ 32 - --fish <(cat completions/thud.fish) \ 33 - --zsh <(cat completions/_thud) 32 + --bash <(cat target/completions/thud.bash) \ 33 + --fish <(cat target/completions/thud.fish) \ 34 + --zsh <(cat target/completions/_thud) 34 35 ''; 36 + 37 + passthru.updateScript = nix-update-script { }; 35 38 36 39 meta = with lib; { 37 40 description = "Generate directory thumbnails for GTK-based file browsers from images inside them";