summary refs log tree commit diff
path: root/pkgs/development/tools/ws/default.nix
diff options
context:
space:
mode:
authorMoritz Ulrich <moritz@tarn-vedra.de>2018-01-29 10:22:50 +0100
committerMoritz Ulrich <moritz@tarn-vedra.de>2018-01-29 10:23:07 +0100
commitf8c4ccd89b710522b72069868f80e078f101ca67 (patch)
treed5bda8a1439ead8619aac3cf84895181a33b119a /pkgs/development/tools/ws/default.nix
parent5c2ba86fdde26d7913f9bfc3357149dce750571d (diff)
downloadnixpkgs-f8c4ccd89b710522b72069868f80e078f101ca67.tar
nixpkgs-f8c4ccd89b710522b72069868f80e078f101ca67.tar.gz
nixpkgs-f8c4ccd89b710522b72069868f80e078f101ca67.tar.bz2
nixpkgs-f8c4ccd89b710522b72069868f80e078f101ca67.tar.lz
nixpkgs-f8c4ccd89b710522b72069868f80e078f101ca67.tar.xz
nixpkgs-f8c4ccd89b710522b72069868f80e078f101ca67.tar.zst
nixpkgs-f8c4ccd89b710522b72069868f80e078f101ca67.zip
ws: Init at 0.2.1
Diffstat (limited to 'pkgs/development/tools/ws/default.nix')
-rw-r--r--pkgs/development/tools/ws/default.nix26
1 files changed, 26 insertions, 0 deletions
diff --git a/pkgs/development/tools/ws/default.nix b/pkgs/development/tools/ws/default.nix
new file mode 100644
index 00000000000..b99780d4138
--- /dev/null
+++ b/pkgs/development/tools/ws/default.nix
@@ -0,0 +1,26 @@
+# This file was generated by https://github.com/kamilchm/go2nix v1.2.1
+{ stdenv, buildGoPackage, fetchgit, fetchhg, fetchbzr, fetchsvn }:
+
+buildGoPackage rec {
+  name = "ws-${version}";
+  version = "0.2.1";
+  rev = "e9404cb37e339333088b36f6a7909ff3be76931d";
+
+  goPackagePath = "github.com/hashrocket/ws";
+
+  src = fetchgit {
+    inherit rev;
+    url = "https://github.com/hashrocket/ws";
+    sha256 = "192slrz1cj1chzmfrl0d9ai8bq6s4w0iwpvxkhxb9krga7mkp9xb";
+  };
+
+  goDeps = ./deps.nix;
+
+  meta = with stdenv.lib; {
+    description = "websocket command line tool";
+    homepage    = https://github.com/hashrocket/ws;
+    license     = licenses.mit;
+    maintainers = [ maintainers.the-kenny ];
+    platforms   = platforms.unix;
+  };
+}