nixpkgs/pkgs/tools/virtualization/cloudmonkey/default.nix

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

25 lines
574 B
Nix
Raw Normal View History

2021-07-17 12:08:39 +00:00
{ buildGoModule, fetchFromGitHub, lib }:
2017-05-26 13:36:47 +00:00
2021-07-17 12:08:39 +00:00
buildGoModule rec {
2017-05-26 13:36:47 +00:00
pname = "cloudmonkey";
2021-10-29 07:46:54 +00:00
version = "6.2.0";
2017-05-26 13:36:47 +00:00
2021-07-17 12:08:39 +00:00
src = fetchFromGitHub {
owner = "apache";
repo = "cloudstack-cloudmonkey";
rev = version;
2021-10-29 07:46:54 +00:00
sha256 = "sha256-C9e2KsnoggjWZp8gx757MbFdGxmfh+TtAd+luS3ycHU=";
2021-07-17 12:08:39 +00:00
};
2017-05-26 13:36:47 +00:00
2021-07-17 12:08:39 +00:00
vendorSha256 = null;
2017-05-26 13:36:47 +00:00
meta = with lib; {
description = "CLI for Apache CloudStack";
2021-07-17 12:08:39 +00:00
homepage = "https://github.com/apache/cloudstack-cloudmonkey";
2017-05-26 13:36:47 +00:00
license = [ licenses.asl20 ];
maintainers = [ maintainers.womfoo ];
mainProgram = "cloudstack-cloudmonkey";
2017-05-26 13:36:47 +00:00
};
}