2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, buildGoPackage, fetchFromGitHub }:
|
2019-07-10 00:39:30 +01:00
|
|
|
|
|
|
|
buildGoPackage rec {
|
|
|
|
pname = "claws";
|
|
|
|
version = "0.3.2";
|
|
|
|
|
|
|
|
goPackagePath = "github.com/thehowl/${pname}";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
rev = version;
|
|
|
|
owner = "thehowl";
|
|
|
|
repo = pname;
|
|
|
|
sha256 = "0nl7xvdivnabqr98mh3m1pwqznprsaqpagny6zcwwmz480x4pmfz";
|
|
|
|
};
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2019-07-10 00:39:30 +01:00
|
|
|
homepage = "https://github.com/thehowl/claws";
|
|
|
|
description = "Interactive command line client for testing websocket servers";
|
|
|
|
license = licenses.mit;
|
|
|
|
platforms = platforms.unix;
|
|
|
|
maintainers = with maintainers; [ petabyteboy ];
|
|
|
|
};
|
|
|
|
}
|