nixpkgs/pkgs/by-name/al/aliyun-cli/package.nix

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

34 lines
920 B
Nix
Raw Normal View History

2021-10-25 01:40:20 +00:00
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "aliyun-cli";
2024-07-10 10:27:24 +00:00
version = "3.0.211";
2021-10-25 01:40:20 +00:00
src = fetchFromGitHub {
rev = "v${version}";
owner = "aliyun";
repo = pname;
fetchSubmodules = true;
hash = "sha256-6msh6bGL++nXVzwwNW6fFZbkN40ieL+SpgRownIs9aE=";
2021-10-25 01:40:20 +00:00
};
2021-12-19 04:20:00 +00:00
2024-06-20 13:32:38 +00:00
vendorHash = "sha256-wHdSDBxDArVbD5+EgGcIpQ+NLg5BKXo2v3WM4ni1efc=";
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
};
}