wrtag: 0.15.0 -> 0.17.0 (#435731)

authored by Peder Bergebakken Sundt and committed by GitHub e5dce426 ef205d1b

+11 -3
+11 -3
pkgs/by-name/wr/wrtag/package.nix
··· 2 2 lib, 3 3 buildGoModule, 4 4 fetchFromGitHub, 5 + installShellFiles, 5 6 nix-update-script, 6 7 testers, 7 8 }: 8 9 buildGoModule (finalAttrs: { 9 10 pname = "wrtag"; 10 - version = "0.15.0"; 11 + version = "0.17.0"; 11 12 12 13 src = fetchFromGitHub { 13 14 owner = "sentriz"; 14 15 repo = "wrtag"; 15 16 tag = "v${finalAttrs.version}"; 16 - hash = "sha256-ev/dfj6WpBZzOaN1RXHcEmkd2pVLX92J/VhoMXYGPPw="; 17 + hash = "sha256-fYxtZnOO4+uU6p8p7uNPDnIinUT+TYXfO3G17PtcqQA="; 17 18 }; 18 19 19 - vendorHash = "sha256-es6pfWw3NqKKV9jfsgQhEU6IbWeptqbP0yvum/BxOuI="; 20 + vendorHash = "sha256-Baz5oCKh26+t30ZyjfdYt3YobWAxSRwk12wdFEVPLRY="; 21 + 22 + nativeBuildInputs = [ installShellFiles ]; 23 + 24 + postInstall = '' 25 + installShellCompletion contrib/completions/wrtag.{fish,bash} 26 + installShellCompletion contrib/completions/metadata.fish 27 + ''; 20 28 21 29 passthru = { 22 30 updateScript = nix-update-script { };