1# This file was generated by https://github.com/kamilchm/go2nix v1.2.1
2{ stdenv, buildGoPackage, fetchgit, fetchhg, fetchbzr, fetchsvn }:
3
4buildGoPackage rec {
5 name = "ws-${version}";
6 version = "0.2.1";
7 rev = "e9404cb37e339333088b36f6a7909ff3be76931d";
8
9 goPackagePath = "github.com/hashrocket/ws";
10
11 src = fetchgit {
12 inherit rev;
13 url = "https://github.com/hashrocket/ws";
14 sha256 = "192slrz1cj1chzmfrl0d9ai8bq6s4w0iwpvxkhxb9krga7mkp9xb";
15 };
16
17 goDeps = ./deps.nix;
18
19 meta = with stdenv.lib; {
20 description = "websocket command line tool";
21 homepage = https://github.com/hashrocket/ws;
22 license = licenses.mit;
23 maintainers = [ maintainers.the-kenny ];
24 platforms = platforms.unix;
25 };
26}