mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-12 08:43:06 +00:00
34 lines
924 B
Nix
34 lines
924 B
Nix
{ lib, buildGoModule, fetchFromGitHub }:
|
|
|
|
buildGoModule rec {
|
|
pname = "aliyun-cli";
|
|
version = "3.0.127";
|
|
|
|
src = fetchFromGitHub {
|
|
rev = "v${version}";
|
|
owner = "aliyun";
|
|
repo = pname;
|
|
fetchSubmodules = true;
|
|
sha256 = "sha256-itgmVUKWJMFOej2u8nPGAVwsTOCRL3zFMuM8jbuieDI=";
|
|
};
|
|
|
|
vendorSha256 = "sha256-aqu70PSI+xFin8xvVUb0tCN1Am/7WKvI5+EMIKTFKe0=";
|
|
|
|
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";
|
|
};
|
|
}
|