about summary refs log tree commit diff
path: root/pkgs/by-name/ws
diff options
context:
space:
mode:
authorr-vdp <ramses@well-founded.dev>2024-06-13 11:18:57 +0300
committerr-vdp <ramses@well-founded.dev>2024-06-18 11:07:06 +0300
commit8d7a9b322770cbbed116da8d349bab32acf6bf7b (patch)
tree9ee2c1139c5a32c7798341640710d35843e0a795 /pkgs/by-name/ws
parent2e1ed6a2305c3c092265c758c1964ad0cc526ad8 (diff)
wstunnel: 9.6.2 -> 9.7.0
Diffstat (limited to 'pkgs/by-name/ws')
-rw-r--r--pkgs/by-name/ws/wstunnel/package.nix38
1 files changed, 27 insertions, 11 deletions
diff --git a/pkgs/by-name/ws/wstunnel/package.nix b/pkgs/by-name/ws/wstunnel/package.nix
index 9e172a08f3757..189abbb6b1808 100644
--- a/pkgs/by-name/ws/wstunnel/package.nix
+++ b/pkgs/by-name/ws/wstunnel/package.nix
@@ -3,30 +3,46 @@
 , lib
 }:
 
-rustPlatform.buildRustPackage rec {
+let
+  version = "9.7.0";
+in
+
+rustPlatform.buildRustPackage {
   pname = "wstunnel";
-  version = "9.6.2";
+  inherit version;
 
   src = fetchFromGitHub {
     owner = "erebe";
-    repo  = "wstunnel";
+    repo = "wstunnel";
     rev = "v${version}";
-    hash = "sha256-0r+8C8Gf3/s3opzplzc22d9VVp39FtBq1bYkxlmtqjg=";
+    hash = "sha256-8bLccR6ZmldmrvjlZKFHEa4PoLzyUcLkyQbwSrJjoyY=";
   };
 
-  cargoHash = "sha256-hHVxa7Ihmuuf26ZSzGmrHA2RczhzXtse3h1M4cNCvhw=";
+  cargoHash = "sha256-IAq7Fyr6Ne1Bq18WfqBoppel9FOWSs8PkiXKMwcJ26c=";
 
   checkFlags = [
-    # make use of network connection
+    # Tries to launch a test container
     "--skip=tcp::tests::test_proxy_connection"
   ];
 
+  doInstallCheck = true;
+  installCheckPhase = ''
+    runHook preInstallCheck
+    actual="$($out/bin/wstunnel --version)"
+    expected="${pname} ${version}"
+    echo "Check that 'wstunnel --version' returns: $expected"
+    if [[ "$actual" != "$expected" ]]; then
+      echo "'wstunnel --version' returned: $actual"
+      exit 1
+    fi
+    runHook postInstallCheck
+  '';
+
   meta = {
-    description = "Tunneling program over websocket protocol";
+    description = "Tunnel all your traffic over Websocket or HTTP2 - Bypass firewalls/DPI";
+    homepage = "https://github.com/erebe/wstunnel";
+    license = lib.licenses.bsd3;
+    maintainers = with lib.maintainers; [ rvdp neverbehave ];
     mainProgram = "wstunnel";
-    homepage    = "https://github.com/erebe/wstunnel";
-    license     = with lib.licenses; [ bsd3 ];
-    maintainers = with lib.maintainers; [ neverbehave ];
-    platforms   = lib.platforms.linux;
   };
 }