tuleap-cli: 1.1.0 -> 1.2.0

Changes:
https://gitlab.com/csgroup-oss/tuleap-cli/-/releases/1.2.0

+6 -5
+6 -5
pkgs/by-name/tu/tuleap-cli/package.nix
··· 3 3 buildGoModule, 4 4 fetchFromGitLab, 5 5 installShellFiles, 6 + stdenv, 6 7 }: 7 8 8 9 buildGoModule rec { 9 10 pname = "tuleap-cli"; 10 - version = "1.1.0"; 11 + version = "1.2.0"; 11 12 12 13 src = fetchFromGitLab { 13 14 owner = "csgroup-oss"; 14 15 repo = "tuleap-cli"; 15 - rev = "refs/tags/v${version}"; 16 - hash = "sha256-hL0mGWXzvHYFc8u4RXCDys3Fe/cgsGljfhSkPAjzt4o="; 16 + tag = version; 17 + hash = "sha256-qiQnu167BIF+LzwahheBE0KwxFmRcahdU7quTpPtEEk="; 17 18 }; 18 19 19 - vendorHash = "sha256-N9Hmxw/70Cgc790AVRn7lmuhMtDhI94CTUlqHU4VbaY="; 20 + vendorHash = "sha256-cO7+wG4uAd9e6n/KWQPYepixNmXBbuBxagT82hcbcIo="; 20 21 21 22 nativeBuildInputs = [ installShellFiles ]; 22 23 ··· 27 28 28 29 subPackages = [ "." ]; 29 30 30 - postInstall = '' 31 + postInstall = lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform) '' 31 32 installShellCompletion --cmd tuleap-cli \ 32 33 --bash <($out/bin/tuleap-cli -s tuleap.example.com completion bash) \ 33 34 --fish <($out/bin/tuleap-cli -s tuleap.example.com completion fish) \