Skip to content

Commit

Permalink
wsl-vpnkit: init at 0.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
terlar committed Jul 11, 2023
1 parent 30a8e2f commit d08ce39
Show file tree
Hide file tree
Showing 2 changed files with 86 additions and 0 deletions.
84 changes: 84 additions & 0 deletions pkgs/tools/networking/wsl-vpnkit/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,84 @@
{ lib
, resholve
, fetchFromGitHub

# Runtime dependencies
, coreutils
, dnsutils
, gawk
, gnugrep
, gvproxy
, iproute2
, iptables
, iputils
, wget
}:

let
version = "0.4.1";
gvproxyWin = gvproxy.overrideAttrs (_: {
buildPhase = ''
GOARCH=amd64 GOOS=windows go build -ldflags '-s -w' -o bin/gvproxy-windows.exe ./cmd/gvproxy
'';
});
in
resholve.mkDerivation {
pname = "wsl-vpnkit";
inherit version;

src = fetchFromGitHub {
owner = "sakai135";
repo = "wsl-vpnkit";
rev = "v${version}";
hash = "sha256-Igbr3L2W32s4uBepllSz07bkbI3qwAKMZkBrXLqGrGA=";
};

postPatch = ''
substituteInPlace wsl-vpnkit \
--replace "/app/wsl-vm" "${gvproxy}/bin/gvforwarder" \
--replace "/app/wsl-gvproxy.exe" "${gvproxyWin}/bin/gvproxy-windows.exe"
'';

installPhase = ''
mkdir -p $out/bin
cp wsl-vpnkit $out/bin
'';

solutions.wsl-vpnkit = {
scripts = [ "bin/wsl-vpnkit" ];
interpreter = "none";
inputs = [
coreutils
dnsutils
gawk
gnugrep
iproute2
iptables
iputils
wget
];

keep = {
"$VMEXEC_PATH" = true;
"$GVPROXY_PATH" = true;
};

execer = [
"cannot:${iproute2}/bin/ip"
"cannot:${wget}/bin/wget"
];

fix = {
aliases = true;
ping = "${iputils}/bin/ping";
};
};

meta = with lib; {
description = "Provides network connectivity to Windows Subsystem for Linux (WSL) when blocked by VPN";
homepage = "https://github.com/sakai135/wsl-vpnkit";
changelog = "https://github.com/sakai135/wsl-vpnkit/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ terlar ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -7441,6 +7441,8 @@ with pkgs;

wsl-open = callPackage ../tools/misc/wsl-open { };

wsl-vpnkit = callPackage ../tools/networking/wsl-vpnkit { };

xkcdpass = with python3Packages; toPythonApplication xkcdpass;

xjobs = callPackage ../tools/misc/xjobs { };
Expand Down

0 comments on commit d08ce39

Please sign in to comment.