aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/tools/ws/default.nix
blob: 952538956485026c3ab85aa531bce57f03baba54 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# This file was generated by https://github.com/kamilchm/go2nix v1.2.1
{ stdenv, buildGoPackage, fetchgit }:

buildGoPackage rec {
  pname = "ws";
  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;
    platforms   = platforms.unix;
  };
}