Merge pull request #242533 from dit7ya/tunwg

tunwg: init at 23.06.14+dbfe3aa
This commit is contained in:
Pol Dellaiera 2023-07-14 09:08:47 +02:00 committed by GitHub
commit 659b2247bc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 29 additions and 0 deletions

View File

@ -0,0 +1,27 @@
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "tunwg";
version = "23.06.14+dbfe3aa";
src = fetchFromGitHub {
owner = "ntnj";
repo = "tunwg";
rev = "v${version}";
hash = "sha256-w7rx2Q0VXQBETmHROcVWzh0TIEjiITpI5CR9jvtXF7E=";
};
vendorHash = "sha256-3vDcCOrhYTHvr8ck0WxZPRUQNsKtEVyUKTD5Epbno6I=";
ldflags = [ "-s" "-w" ];
meta = with lib; {
description = "Secure private tunnel to your local servers";
homepage = "https://github.com/ntnj/tunwg";
license = licenses.mit;
maintainers = with maintainers; [ dit7ya ];
};
}

View File

@ -13571,6 +13571,8 @@ with pkgs;
tuntox = callPackage ../tools/networking/tuntox { };
tunwg = callPackage ../tools/networking/tunwg { };
omapd = callPackage ../tools/security/omapd { };
ttf2pt1 = callPackage ../tools/misc/ttf2pt1 { };