2022-09-20 07:59:15 +00:00
|
|
|
{ lib, buildGoModule, fetchFromGitHub }:
|
2019-07-09 23:39:30 +00:00
|
|
|
|
2022-09-20 07:59:15 +00:00
|
|
|
buildGoModule rec {
|
2019-07-09 23:39:30 +00:00
|
|
|
pname = "claws";
|
2022-09-20 07:59:15 +00:00
|
|
|
version = "0.4.1";
|
2019-07-09 23:39:30 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
rev = version;
|
|
|
|
owner = "thehowl";
|
|
|
|
repo = pname;
|
2022-09-20 07:59:15 +00:00
|
|
|
sha256 = "sha256-3zzUBeYfu9x3vRGX1DionLnAs1e44tFj8Z1dpVwjdCg=";
|
2019-07-09 23:39:30 +00:00
|
|
|
};
|
|
|
|
|
2022-09-20 07:59:15 +00:00
|
|
|
vendorSha256 = "sha256-FP+3Rw5IdCahhx9giQrpepMMtF1pWcyjNglrlu9ju0Q=";
|
|
|
|
|
|
|
|
ldflags = [ "-s" "-w" ];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2019-07-09 23:39:30 +00:00
|
|
|
homepage = "https://github.com/thehowl/claws";
|
|
|
|
description = "Interactive command line client for testing websocket servers";
|
|
|
|
license = licenses.mit;
|
|
|
|
platforms = platforms.unix;
|
2022-09-20 07:59:15 +00:00
|
|
|
maintainers = with maintainers; [ aaronjheng ];
|
2019-07-09 23:39:30 +00:00
|
|
|
};
|
|
|
|
}
|