mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
26 lines
730 B
Nix
26 lines
730 B
Nix
{ lib, buildGoModule, fetchFromGitHub }:
|
|
|
|
buildGoModule rec {
|
|
pname = "kubevpn";
|
|
version = "2.2.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "KubeNetworks";
|
|
repo = "kubevpn";
|
|
rev = "v${version}";
|
|
hash = "sha256-Z+IXSmN1V0xRnhE/PpWv9dQIwfTztJRYaftY9KCIucc=";
|
|
};
|
|
|
|
vendorHash = null;
|
|
|
|
# TODO investigate why some config tests are failing
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
changelog = "https://github.com/KubeNetworks/kubevpn/releases/tag/${src.rev}";
|
|
description = "Create a VPN and connect to Kubernetes cluster network, access resources, and more";
|
|
homepage = "https://github.com/KubeNetworks/kubevpn";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ mig4ng ];
|
|
};
|
|
}
|