Files
nix-config/modules/overlays/vpngate/default.nix
Dave Gallant 1ea27747a8 Cleanup
2023-02-04 21:26:13 -05:00

27 lines
602 B
Nix

{
lib,
fetchFromGitHub,
buildGoModule,
}:
buildGoModule rec {
pname = "vpngate";
version = "v0.1.3";
vendorSha256 = "sha256-VR5Z8tIeCWfJzkNAB8/opRDYGxX+frX+x5oxvcSBfeY=";
src = fetchFromGitHub {
owner = "davegallant";
repo = "vpngate";
rev = version;
sha256 = "sha256-6hjlCfkHA5rPBoQ9npeVZmwsMjIi93RmxVS/uo8bWMo=";
};
meta = with lib; {
homepage = "https://www.vpngate.net";
description = "a client for vpngate.net";
license = licenses.gpl3;
maintainers = with maintainers; [davegallant];
platforms = platforms.linux ++ platforms.darwin;
};
}