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
43 lines
998 B
Nix
43 lines
998 B
Nix
{
|
|
lib,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
installShellFiles,
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "scalingo";
|
|
version = "1.40.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = pname;
|
|
repo = "cli";
|
|
rev = version;
|
|
hash = "sha256-AY2Iy7MwZ0OmNdv9EPgJ79Ug8pDuxlVNtLRhlX+XCC4=";
|
|
};
|
|
|
|
vendorHash = null;
|
|
|
|
preCheck = ''
|
|
export HOME=$TMPDIR
|
|
'';
|
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
postInstall = ''
|
|
rm $out/bin/dists
|
|
installShellCompletion --cmd scalingo \
|
|
--bash cmd/autocomplete/scripts/scalingo_complete.bash \
|
|
--zsh cmd/autocomplete/scripts/scalingo_complete.zsh
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Command line client for the Scalingo PaaS";
|
|
mainProgram = "scalingo";
|
|
homepage = "https://doc.scalingo.com/platform/cli/start";
|
|
changelog = "https://github.com/Scalingo/cli/blob/master/CHANGELOG.md";
|
|
license = licenses.bsdOriginal;
|
|
maintainers = with maintainers; [ cimm ];
|
|
platforms = with lib.platforms; unix;
|
|
};
|
|
}
|