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";
version = "0.3.2";
goPackagePath = "github.com/thehowl/${pname}";
version = "0.4.1";
src = fetchFromGitHub {
rev = version;
owner = "thehowl";
repo = pname;
sha256 = "0nl7xvdivnabqr98mh3m1pwqznprsaqpagny6zcwwmz480x4pmfz";
sha256 = "sha256-3zzUBeYfu9x3vRGX1DionLnAs1e44tFj8Z1dpVwjdCg=";
};
vendorSha256 = "sha256-FP+3Rw5IdCahhx9giQrpepMMtF1pWcyjNglrlu9ju0Q=";
ldflags = [ "-s" "-w" ];
meta = with lib; {
homepage = "https://github.com/thehowl/claws";
description = "Interactive command line client for testing websocket servers";
license = licenses.mit;
platforms = platforms.unix;
maintainers = with maintainers; [ ];
maintainers = with maintainers; [ aaronjheng ];
};
}