nixpkgs/pkgs/tools/admin/scalr-cli/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

43 lines
997 B
Nix
Raw Normal View History

2023-03-20 21:10:23 +00:00
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "scalr-cli";
2024-01-06 08:58:22 +00:00
version = "0.15.5";
2023-03-20 21:10:23 +00:00
src = fetchFromGitHub {
owner = "Scalr";
repo = "scalr-cli";
rev = "v${version}";
2024-01-06 08:58:22 +00:00
hash = "sha256-RXfUlpwlDNAZRJTbbE+n8mReVyrWxUsWkOGaaALz0Q4=";
2023-03-20 21:10:23 +00:00
};
2024-01-06 08:58:22 +00:00
vendorHash = "sha256-0p4f+KKD04IFAUQG8F3b+2sx9suYemt3wbgSNNOOIlk=";
2023-03-20 21:10:23 +00:00
ldflags = [
"-s" "-w"
];
preConfigure = ''
# Set the version.
substituteInPlace main.go --replace '"0.0.0"' '"${version}"'
'';
postInstall = ''
mv $out/bin/cli $out/bin/scalr
'';
doCheck = false; # Skip tests as they require creating actual Scalr resources.
meta = with lib; {
description = "Command-line tool that communicates directly with the Scalr API";
2023-03-20 21:10:23 +00:00
homepage = "https://github.com/Scalr/scalr-cli";
changelog = "https://github.com/Scalr/scalr-cli/releases/tag/v${version}";
license = licenses.asl20;
maintainers = with maintainers; [ dylanmtaylor ];
mainProgram = "scalr";
};
}