Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
31 lines
731 B
Nix
31 lines
731 B
Nix
{
|
|
lib,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
}:
|
|
buildGoModule rec {
|
|
pname = "bitbucket-cli";
|
|
version = "1.0.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "swisscom";
|
|
repo = "bitbucket-cli";
|
|
rev = "v${version}";
|
|
hash = "sha256-8Qvlv/S5IkRk+2D/Pnb0+FP7ryHh1kSRJCiUjSO0OtI=";
|
|
};
|
|
|
|
vendorHash = "sha256-xjCY3Ycz5Ty6jTDHNNUWYp2SP8EPhDiwO7+WJBL3lAQ=";
|
|
|
|
# Tests seem to be using Swisscom's live servers.
|
|
doCheck = false;
|
|
|
|
meta = {
|
|
description = "Bitbucket Enterprise CLI";
|
|
homepage = "https://github.com/swisscom/bitbucket-cli";
|
|
mainProgram = "bitbucket-cli";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ attila ];
|
|
platforms = with lib.platforms; linux ++ darwin;
|
|
};
|
|
}
|