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

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

34 lines
922 B
Nix
Raw Normal View History

2021-10-25 01:40:20 +00:00
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "aliyun-cli";
2023-09-03 07:13:35 +00:00
version = "3.0.180";
2021-10-25 01:40:20 +00:00
src = fetchFromGitHub {
rev = "v${version}";
owner = "aliyun";
repo = pname;
fetchSubmodules = true;
2023-09-03 07:13:35 +00:00
sha256 = "sha256-w1t1sx7Pcv444x3YPNSg3fRQdPga2Q9Z1+Iad7OTjOM=";
2021-10-25 01:40:20 +00:00
};
2021-12-19 04:20:00 +00:00
2023-09-03 07:13:35 +00:00
vendorHash = "sha256-bL1S6GML7XuLraVXcd6NcC3VSYAd05F2ktzI0KF3G8A=";
2021-10-25 01:40:20 +00:00
2021-12-19 04:20:00 +00:00
subPackages = [ "main" ];
2021-10-25 01:40:20 +00:00
ldflags = [ "-s" "-w" "-X github.com/aliyun/aliyun-cli/cli.Version=${version}" ];
2021-10-25 01:40:20 +00:00
postInstall = ''
mv $out/bin/main $out/bin/aliyun
'';
meta = with lib; {
2021-12-19 04:20:00 +00:00
description = "Tool to manage and use Alibaba Cloud resources through a command line interface";
2021-10-25 01:40:20 +00:00
homepage = "https://github.com/aliyun/aliyun-cli";
changelog = "https://github.com/aliyun/aliyun-cli/releases/tag/v${version}";
2021-10-25 01:40:20 +00:00
license = licenses.asl20;
maintainers = with maintainers; [ ornxka ];
mainProgram = "aliyun";
2021-10-25 01:40:20 +00:00
};
}