fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
33 lines
922 B
Nix
33 lines
922 B
Nix
{ lib, buildGoModule, fetchFromGitHub }:
|
|
|
|
buildGoModule rec {
|
|
pname = "aliyun-cli";
|
|
version = "3.0.207";
|
|
|
|
src = fetchFromGitHub {
|
|
rev = "v${version}";
|
|
owner = "aliyun";
|
|
repo = pname;
|
|
fetchSubmodules = true;
|
|
sha256 = "sha256-tRNi1V91H+V1uVGs9SsLBjA51eGn0IH3ohjmH8dHYKY=";
|
|
};
|
|
|
|
vendorHash = "sha256-MnOqh3qAYAN2Lxt/RWWn4GgpdBFDojMbnzIsHx2pPSk=";
|
|
|
|
subPackages = [ "main" ];
|
|
|
|
ldflags = [ "-s" "-w" "-X github.com/aliyun/aliyun-cli/cli.Version=${version}" ];
|
|
|
|
postInstall = ''
|
|
mv $out/bin/main $out/bin/aliyun
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Tool to manage and use Alibaba Cloud resources through a command line interface";
|
|
homepage = "https://github.com/aliyun/aliyun-cli";
|
|
changelog = "https://github.com/aliyun/aliyun-cli/releases/tag/v${version}";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ ornxka ];
|
|
mainProgram = "aliyun";
|
|
};
|
|
}
|