claws: 0.3.2 -> 0.4.1

This commit is contained in:
Aaron Jheng 2022-09-20 07:59:15 +00:00
parent 998f0f7924
commit e4804b0c54
No known key found for this signature in database
GPG key ID: F6A547A869D050A3

View file

@ -1,23 +1,25 @@
{ lib, buildGoPackage, fetchFromGitHub }: { lib, buildGoModule, fetchFromGitHub }:
buildGoPackage rec { buildGoModule rec {
pname = "claws"; pname = "claws";
version = "0.3.2"; version = "0.4.1";
goPackagePath = "github.com/thehowl/${pname}";
src = fetchFromGitHub { src = fetchFromGitHub {
rev = version; rev = version;
owner = "thehowl"; owner = "thehowl";
repo = pname; repo = pname;
sha256 = "0nl7xvdivnabqr98mh3m1pwqznprsaqpagny6zcwwmz480x4pmfz"; sha256 = "sha256-3zzUBeYfu9x3vRGX1DionLnAs1e44tFj8Z1dpVwjdCg=";
}; };
vendorSha256 = "sha256-FP+3Rw5IdCahhx9giQrpepMMtF1pWcyjNglrlu9ju0Q=";
ldflags = [ "-s" "-w" ];
meta = with lib; { meta = with lib; {
homepage = "https://github.com/thehowl/claws"; homepage = "https://github.com/thehowl/claws";
description = "Interactive command line client for testing websocket servers"; description = "Interactive command line client for testing websocket servers";
license = licenses.mit; license = licenses.mit;
platforms = platforms.unix; platforms = platforms.unix;
maintainers = with maintainers; [ ]; maintainers = with maintainers; [ aaronjheng ];
}; };
} }