claws: 0.3.2 -> 0.4.1
This commit is contained in:
parent
998f0f7924
commit
e4804b0c54
1 changed files with 9 additions and 7 deletions
|
@ -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 ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue