summary refs log tree commit diff
path: root/pkgs/tools/misc/websocat/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/tools/misc/websocat/default.nix')
-rw-r--r--pkgs/tools/misc/websocat/default.nix24
1 files changed, 24 insertions, 0 deletions
diff --git a/pkgs/tools/misc/websocat/default.nix b/pkgs/tools/misc/websocat/default.nix
new file mode 100644
index 00000000000..2e91c5c3b63
--- /dev/null
+++ b/pkgs/tools/misc/websocat/default.nix
@@ -0,0 +1,24 @@
+{ stdenv, fetchFromGitHub, rustPlatform
+}:
+
+rustPlatform.buildRustPackage rec {
+  name = "websocat-${version}";
+  version = "1.3.0";
+
+  src = fetchFromGitHub {
+    owner  = "vi";
+    repo   = "websocat";
+    rev    = "v${version}";
+    sha256 = "1gf2snr12vnx2mhsrwkb5274r1pvdrf8m3bybrqbh8s9wd83nrh6";
+  };
+
+  cargoSha256 = "0vkb3jmyb3zg3xiig5vlxhh74m27rvqbkgrwdqzprifn9vcj17ir";
+
+  meta = with stdenv.lib; {
+    description = "Command-line client for WebSockets (like netcat/socat)";
+    homepage    = https://github.com/vi/websocat;
+    license     = with licenses; [ mit ];
+    maintainers = [ maintainers.thoughtpolice ];
+    platforms   = platforms.all;
+  };
+}