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