Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 buildGoModule, 3 fetchFromGitHub, 4 lib, 5}: 6 7buildGoModule rec { 8 pname = "cloudmonkey"; 9 version = "6.4.0"; 10 11 src = fetchFromGitHub { 12 owner = "apache"; 13 repo = "cloudstack-cloudmonkey"; 14 rev = version; 15 sha256 = "sha256-mkEGOZw7GDIFnYUpgvCetA4dU9R1m4q6MOUDG0TWN64="; 16 }; 17 18 vendorHash = null; 19 20 meta = with lib; { 21 description = "CLI for Apache CloudStack"; 22 homepage = "https://github.com/apache/cloudstack-cloudmonkey"; 23 license = [ licenses.asl20 ]; 24 maintainers = [ maintainers.womfoo ]; 25 mainProgram = "cloudstack-cloudmonkey"; 26 }; 27 28}