at 23.05-pre 24 lines 574 B view raw
1{ buildGoModule, fetchFromGitHub, lib }: 2 3buildGoModule rec { 4 pname = "cloudmonkey"; 5 version = "6.2.0"; 6 7 src = fetchFromGitHub { 8 owner = "apache"; 9 repo = "cloudstack-cloudmonkey"; 10 rev = version; 11 sha256 = "sha256-C9e2KsnoggjWZp8gx757MbFdGxmfh+TtAd+luS3ycHU="; 12 }; 13 14 vendorSha256 = null; 15 16 meta = with lib; { 17 description = "CLI for Apache CloudStack"; 18 homepage = "https://github.com/apache/cloudstack-cloudmonkey"; 19 license = [ licenses.asl20 ]; 20 maintainers = [ maintainers.womfoo ]; 21 mainProgram = "cloudstack-cloudmonkey"; 22 }; 23 24}