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
718 B
Nix
Raw Normal View History

2022-05-14 02:47:55 +02:00
{ lib, fetchFromGitHub, buildGoModule }:
2022-05-14 02:47:55 +02:00
buildGoModule rec {
pname = "govc";
2023-03-22 18:07:38 +01:00
version = "0.30.4";
2018-02-16 20:27:14 +01:00
subPackages = [ "govc" ];
src = fetchFromGitHub {
rev = "v${version}";
owner = "vmware";
repo = "govmomi";
2023-03-22 18:07:38 +01:00
sha256 = "sha256-lYiyZ2sY58bzUtqcM6WIsooLldQAxibASM7xXKAeqJM=";
2018-02-16 20:27:14 +01:00
};
2023-01-30 21:55:00 +01:00
vendorHash = "sha256-jbGqQITAhyBLoDa3cKU5gK+4WGgoGSCyFtzeoXx8e7k=";
2022-05-14 02:47:55 +02:00
ldflags = [
"-s"
"-w"
"-X github.com/vmware/govmomi/govc/flags.BuildVersion=${version}"
];
2018-02-16 20:27:14 +01:00
meta = {
description = "A vSphere CLI built on top of govmomi";
homepage = "https://github.com/vmware/govmomi/tree/master/govc";
2018-02-16 20:27:14 +01:00
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ nicknovitski ];
};
}