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

26 lines
549 B
Nix
Raw Normal View History

2021-07-17 14:08:39 +02:00
{ buildGoModule, fetchFromGitHub, lib }:
2017-05-26 15:36:47 +02:00
2021-07-17 14:08:39 +02:00
buildGoModule rec {
2017-05-26 15:36:47 +02:00
pname = "cloudmonkey";
2021-07-17 14:08:39 +02:00
version = "6.1.0";
2017-05-26 15:36:47 +02:00
2021-07-17 14:08:39 +02:00
src = fetchFromGitHub {
owner = "apache";
repo = "cloudstack-cloudmonkey";
rev = version;
sha256 = "sha256-OmVM6ayrtrLl+PADnkUnrssbsq1GZp2KiMBOXPgfi5Y=";
};
2017-05-26 15:36:47 +02:00
2021-07-17 14:08:39 +02:00
runVend = true;
2017-05-26 15:36:47 +02:00
2021-07-17 14:08:39 +02:00
vendorSha256 = null;
2017-05-26 15:36:47 +02:00
meta = with lib; {
description = "CLI for Apache CloudStack";
2021-07-17 14:08:39 +02:00
homepage = "https://github.com/apache/cloudstack-cloudmonkey";
2017-05-26 15:36:47 +02:00
license = [ licenses.asl20 ];
maintainers = [ maintainers.womfoo ];
};
}