nixpkgs/pkgs/development/tools/ws/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
543 B
Nix
Raw Normal View History

2022-03-09 10:26:31 +01:00
{ lib, buildGoPackage, fetchFromGitHub }:
2018-01-29 10:22:50 +01:00
buildGoPackage rec {
pname = "ws";
2018-01-29 10:22:50 +01:00
version = "0.2.1";
goPackagePath = "github.com/hashrocket/ws";
2022-03-09 10:26:31 +01:00
src = fetchFromGitHub {
owner = "hashrocket";
repo = "ws";
rev = "e9404cb37e339333088b36f6a7909ff3be76931d";
sha256 = "sha256-q6c761Evz7Q6nH1fHgEn2uCFokoN0OzqhyxIFn6mWqQ=";
2018-01-29 10:22:50 +01:00
};
meta = with lib; {
2018-01-29 10:22:50 +01:00
description = "websocket command line tool";
homepage = "https://github.com/hashrocket/ws";
2018-01-29 10:22:50 +01:00
license = licenses.mit;
platforms = platforms.unix;
};
}