3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/virtualization/cloudmonkey/default.nix

26 lines
549 B
Nix
Raw Normal View History

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