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

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

34 lines
922 B
Nix
Raw Normal View History

2021-10-25 01:40:20 +00:00
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "aliyun-cli";
2023-11-24 05:01:26 +00:00
version = "3.0.186";
2021-10-25 01:40:20 +00:00
src = fetchFromGitHub {
rev = "v${version}";
owner = "aliyun";
repo = pname;
fetchSubmodules = true;
2023-11-24 05:01:26 +00:00
sha256 = "sha256-Uz34+Z9JH9clAFwbTn8RXxokv0yMD05lrYGexUQwmjo=";
2021-10-25 01:40:20 +00:00
};
2021-12-19 04:20:00 +00:00
2023-11-24 05:01:26 +00:00
vendorHash = "sha256-9vrfctA1r0eheCBU0CeTgjs/JVt4CB3o3n5KVeFuaRI=";
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
};
}