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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
720 B
Nix
Raw Normal View History

2022-05-14 00:47:55 +00:00
{ lib, fetchFromGitHub, buildGoModule }:
2022-05-14 00:47:55 +00:00
buildGoModule rec {
pname = "govc";
2022-05-14 00:47:55 +00:00
version = "0.28.0";
2018-02-16 19:27:14 +00:00
subPackages = [ "govc" ];
src = fetchFromGitHub {
rev = "v${version}";
owner = "vmware";
repo = "govmomi";
2022-05-14 00:47:55 +00:00
sha256 = "sha256-uK1JsBJC9O8dEJbAnyeMoolKZ2WhEPsDo/is/I+gfHg=";
2018-02-16 19:27:14 +00:00
};
2022-05-14 00:47:55 +00:00
vendorSha256 = "sha256-jbGqQITAhyBLoDa3cKU5gK+4WGgoGSCyFtzeoXx8e7k=";
ldflags = [
"-s"
"-w"
"-X github.com/vmware/govmomi/govc/flags.BuildVersion=${version}"
];
2018-02-16 19:27:14 +00:00
meta = {
description = "A vSphere CLI built on top of govmomi";
homepage = "https://github.com/vmware/govmomi/tree/master/govc";
2018-02-16 19:27:14 +00:00
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ nicknovitski ];
};
}