nixpkgs/pkgs/tools/misc/claws/default.nix

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

26 lines
638 B
Nix
Raw Normal View History

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" ];
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
};
}