nixpkgs/pkgs/tools/virtualization/cloudmonkey/default.nix
2022-04-14 10:24:01 -07:00

25 lines
574 B
Nix

{ buildGoModule, fetchFromGitHub, lib }:
buildGoModule rec {
pname = "cloudmonkey";
version = "6.2.0";
src = fetchFromGitHub {
owner = "apache";
repo = "cloudstack-cloudmonkey";
rev = version;
sha256 = "sha256-C9e2KsnoggjWZp8gx757MbFdGxmfh+TtAd+luS3ycHU=";
};
vendorSha256 = null;
meta = with lib; {
description = "CLI for Apache CloudStack";
homepage = "https://github.com/apache/cloudstack-cloudmonkey";
license = [ licenses.asl20 ];
maintainers = [ maintainers.womfoo ];
mainProgram = "cloudstack-cloudmonkey";
};
}