2022-03-30 09:31:56 +00:00
|
|
|
{ lib, buildGoPackage, fetchFromGitHub }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
buildGoPackage rec {
|
|
|
|
pname = "ws";
|
|
|
|
version = "0.2.1";
|
|
|
|
|
|
|
|
goPackagePath = "github.com/hashrocket/ws";
|
|
|
|
|
2022-03-30 09:31:56 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "hashrocket";
|
|
|
|
repo = "ws";
|
|
|
|
rev = "e9404cb37e339333088b36f6a7909ff3be76931d";
|
|
|
|
sha256 = "sha256-q6c761Evz7Q6nH1fHgEn2uCFokoN0OzqhyxIFn6mWqQ=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "websocket command line tool";
|
|
|
|
homepage = "https://github.com/hashrocket/ws";
|
|
|
|
license = licenses.mit;
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|