wireproxy: init at 1.0.5

This commit is contained in:
3JlOy_PYCCKUI 2023-01-04 16:05:21 +03:00
parent 298add347c
commit fc50f868a0
2 changed files with 33 additions and 0 deletions

View file

@ -0,0 +1,31 @@
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "wireproxy";
version = "1.0.5";
src = fetchFromGitHub {
owner = "octeep";
repo = "wireproxy";
rev = "v${version}";
hash = "sha256-5xyKmFxXYhrR8EbG1/ByD10lhkPT9Ky1lq+LL2djaao=";
};
ldflags = [
"-s"
"-w"
"-X main.version=v${version}"
];
vendorHash = "sha256-/LZs6N2m5nHx735Ug+PcM1I1ZL9f8VYEpd7Tt4WizMQ=";
meta = with lib; {
description = "Wireguard client that exposes itself as a socks5 proxy";
homepage = "https://github.com/octeep/wireproxy";
license = licenses.isc;
maintainers = with maintainers; [ _3JlOy-PYCCKUi ];
};
}

View file

@ -12892,6 +12892,8 @@ with pkgs;
wireguard-tools = callPackage ../tools/networking/wireguard-tools { };
wireproxy = callPackage ../tools/networking/wireproxy { };
wiringpi = callPackage ../os-specific/linux/wiringpi { };
wg-friendly-peer-names = callPackage ../tools/networking/wg-friendly-peer-names { };