mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
34 lines
924 B
Nix
34 lines
924 B
Nix
{ lib, buildGoModule, fetchFromGitHub }:
|
|
|
|
buildGoModule rec {
|
|
pname = "aliyun-cli";
|
|
version = "3.0.121";
|
|
|
|
src = fetchFromGitHub {
|
|
rev = "v${version}";
|
|
owner = "aliyun";
|
|
repo = pname;
|
|
fetchSubmodules = true;
|
|
sha256 = "sha256-1D1JZZ/KMC4oZRaYvWpUazTk7llvX5WHPBxWEGCiKrI=";
|
|
};
|
|
|
|
vendorSha256 = "sha256-f3GXkAvTe8rPFWCR5TM4mDK/VOQWt2lrZrfJ/Wvw8Uc=";
|
|
|
|
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";
|
|
};
|
|
}
|