nixpkgs/pkgs/by-name/cl/claws/package.nix

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

33 lines
617 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;
2023-01-24 12:55:52 +00:00
hash = "sha256-3zzUBeYfu9x3vRGX1DionLnAs1e44tFj8Z1dpVwjdCg=";
2019-07-09 23:39:30 +00:00
};
2023-01-24 12:55:52 +00:00
vendorHash = "sha256-FP+3Rw5IdCahhx9giQrpepMMtF1pWcyjNglrlu9ju0Q=";
2022-09-20 07:59:15 +00:00
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;
maintainers = [ ];
2023-11-27 01:17:53 +00:00
mainProgram = "claws";
2019-07-09 23:39:30 +00:00
};
}