1{ buildGoModule, fetchFromGitHub, lib }:
2
3buildGoModule rec {
4 pname = "cloudmonkey";
5 version = "6.1.0";
6
7 src = fetchFromGitHub {
8 owner = "apache";
9 repo = "cloudstack-cloudmonkey";
10 rev = version;
11 sha256 = "sha256-OmVM6ayrtrLl+PADnkUnrssbsq1GZp2KiMBOXPgfi5Y=";
12 };
13
14 runVend = true;
15
16 vendorSha256 = null;
17
18 meta = with lib; {
19 description = "CLI for Apache CloudStack";
20 homepage = "https://github.com/apache/cloudstack-cloudmonkey";
21 license = [ licenses.asl20 ];
22 maintainers = [ maintainers.womfoo ];
23 };
24
25}