mirror of
https://github.com/davegallant/nix-config
synced 2025-08-06 07:13:40 +00:00
29 lines
619 B
Nix
29 lines
619 B
Nix
{ lib
|
|
, fetchFromGitHub
|
|
, buildGoModule
|
|
,
|
|
}:
|
|
buildGoModule rec {
|
|
pname = "vpngate";
|
|
version = "v0.1.5";
|
|
|
|
vendorHash = "sha256-TQLHvoVAMvDtm/9EQUaNVVjQajyMBnJu8NF6Kt0+RJ8=";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "davegallant";
|
|
repo = "vpngate";
|
|
rev = version;
|
|
sha256 = "sha256-+KZ6/h8JLEisnIja4lstJYVHzEC/8PdHL3czK/mJCAs=";
|
|
};
|
|
|
|
doCheck = false;
|
|
|
|
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;
|
|
};
|
|
}
|