Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 433b351a574b
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 762375862940
Choose a head ref
  • 2 commits
  • 2 files changed
  • 2 contributors

Commits on Feb 16, 2018

  1. govc: init at 0.16.0

    nicknovitski committed Feb 16, 2018
    Copy the full SHA
    8c7af33 View commit details
  2. Merge pull request #35051 from nicknovitski/govc-init

    govc: init at 0.16.0
    joachifm authored Feb 16, 2018
    Copy the full SHA
    7623758 View commit details
Showing with 26 additions and 0 deletions.
  1. +24 −0 pkgs/tools/virtualization/govc/default.nix
  2. +2 −0 pkgs/top-level/all-packages.nix
24 changes: 24 additions & 0 deletions pkgs/tools/virtualization/govc/default.nix
Original file line number Diff line number Diff line change
@@ -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 ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
@@ -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 { };