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

33 lines
900 B
Nix
Raw Normal View History

2021-10-25 03:40:20 +02:00
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "aliyun-cli";
2021-12-19 05:20:00 +01:00
version = "3.0.102";
2021-10-25 03:40:20 +02:00
src = fetchFromGitHub {
rev = "v${version}";
owner = "aliyun";
repo = pname;
fetchSubmodules = true;
2021-12-19 05:20:00 +01:00
sha256 = "sha256-DUNWfwLA7if9NVUaUlwfW0i2CVcZyg2gIKmi1Nu485k=";
2021-10-25 03:40:20 +02:00
};
2021-12-19 05:20:00 +01:00
2021-12-05 19:09:50 +01:00
vendorSha256 = "sha256-c7LsCNcxdHwDBEknXJt9AyrmFcem8YtUYy06vNDBdDY=";
2021-10-25 03:40:20 +02:00
2021-12-19 05:20:00 +01:00
subPackages = [ "main" ];
2021-10-25 03:40:20 +02:00
2021-12-19 05:20:00 +01:00
ldFlags = [ "-s" "-w" "-X github.com/aliyun/aliyun-cli/cli.Version=${version}" ];
2021-10-25 03:40:20 +02:00
postInstall = ''
mv $out/bin/main $out/bin/aliyun
'';
meta = with lib; {
2021-12-19 05:20:00 +01:00
description = "Tool to manage and use Alibaba Cloud resources through a command line interface";
2021-10-25 03:40:20 +02:00
homepage = "https://github.com/aliyun/aliyun-cli";
2021-12-19 05:20:00 +01:00
changelog = "https://github.com/aliyun/aliyun-cli/raw/v${version}/CHANGELOG.md";
2021-10-25 03:40:20 +02:00
license = licenses.asl20;
maintainers = with maintainers; [ ornxka ];
};
}