mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-07 21:43:32 +00:00
27 lines
782 B
Nix
27 lines
782 B
Nix
{ lib, buildGoModule, fetchFromGitHub }:
|
|
|
|
buildGoModule rec {
|
|
pname = "kubevpn";
|
|
version = "1.1.36";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "KubeNetworks";
|
|
repo = "kubevpn";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-wL6L94NNIPTYeUx+k78cFUdTMo9vIvzoKfXa2anCFQM=";
|
|
};
|
|
|
|
vendorHash = "sha256-24mw5ku0pQX2QNQPA9E+wowS3y0J+oKiIxuyVGcgBro=";
|
|
|
|
# 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 ];
|
|
};
|
|
}
|