mirror of
https://github.com/davegallant/nix-config
synced 2025-08-06 03:13:38 +00:00
25 lines
601 B
Nix
25 lines
601 B
Nix
{ lib, fetchFromGitHub, buildGoModule }:
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "vpngate";
|
|
version = "v0.0.2";
|
|
|
|
vendorSha256 = "1ys2rvrbxgsrvmjdxqgpmxf0m9nlp905gnr2mrf3c7iaxm86wgf8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "davegallant";
|
|
repo = "vpngate";
|
|
rev = version;
|
|
sha256 = "0ky3wd04xd4sb2zskrrlbgys2gw88yqhngg3bl0sjy8kr6099vfn";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|