55 lines
1.3 KiB
Nix
55 lines
1.3 KiB
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
rustPlatform,
|
|
nixosTests,
|
|
nix-update-script,
|
|
versionCheckHook,
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage (finalAttrs: {
|
|
pname = "wstunnel";
|
|
version = "10.4.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "erebe";
|
|
repo = "wstunnel";
|
|
tag = "v${finalAttrs.version}";
|
|
hash = "sha256-byJli3L5/ZBLD6oIBK8yDiA70eWeN3tjiLDaw3QEN4U=";
|
|
};
|
|
|
|
cargoHash = "sha256-K8ury524O27N27F0iOXDAAQnzFgeSX7ArkZOchsroLE=";
|
|
|
|
cargoBuildFlags = [ "--package wstunnel-cli" ];
|
|
|
|
nativeBuildInputs = [ versionCheckHook ];
|
|
versionCheckProgramArg = "--version";
|
|
doInstallCheck = true;
|
|
|
|
checkFlags = [
|
|
# Tries to launch a test container
|
|
"--skip=tcp::tests::test_proxy_connection"
|
|
"--skip=protocols::tcp::server::tests::test_proxy_connection"
|
|
];
|
|
|
|
passthru = {
|
|
updateScript = nix-update-script { };
|
|
tests = {
|
|
nixosTest = nixosTests.wstunnel;
|
|
};
|
|
};
|
|
|
|
meta = {
|
|
description = "Tunnel all your traffic over Websocket or HTTP2 - Bypass firewalls/DPI";
|
|
homepage = "https://github.com/erebe/wstunnel";
|
|
changelog = "https://github.com/erebe/wstunnel/releases/tag/v${finalAttrs.version}";
|
|
license = lib.licenses.bsd3;
|
|
maintainers = with lib.maintainers; [
|
|
raylas
|
|
rvdp
|
|
neverbehave
|
|
];
|
|
mainProgram = "wstunnel";
|
|
};
|
|
})
|