1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

govc: init at 0.16.0

This commit is contained in:
Nick Novitski 2018-02-16 11:27:14 -08:00
parent 801291bfe8
commit 8c7af333df
2 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1,24 @@
{ lib, fetchFromGitHub, buildGoPackage }:
buildGoPackage rec {
name = "govc-${version}";
version = "0.16.0";
goPackagePath = "github.com/vmware/govmomi";
subPackages = [ "govc" ];
src = fetchFromGitHub {
rev = "v${version}";
owner = "vmware";
repo = "govmomi";
sha256 = "09fllx7l2hsjrv1jl7g06xngjy0xwn5n5zng6x8dspgsl6kblyqp";
};
meta = {
description = "A vSphere CLI built on top of govmomi";
homepage = https://github.com/vmware/govmomi/tree/master/govc;
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ nicknovitski ];
};
}

View file

@ -2511,6 +2511,8 @@ with pkgs;
gource = callPackage ../applications/version-management/gource { };
govc = callPackage ../tools/virtualization/govc { };
gpart = callPackage ../tools/filesystems/gpart { };
gparted = callPackage ../tools/misc/gparted { };