depot/third_party/nixpkgs/pkgs/tools/misc/claws/default.nix
Default email ca5ab3a501 Project import generated by Copybara.
GitOrigin-RevId: 4a01ca36d6bfc133bc617e661916a81327c9bbc8
2022-07-14 08:49:19 -04:00

23 lines
579 B
Nix

{ lib, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
pname = "claws";
version = "0.3.2";
goPackagePath = "github.com/thehowl/${pname}";
src = fetchFromGitHub {
rev = version;
owner = "thehowl";
repo = pname;
sha256 = "0nl7xvdivnabqr98mh3m1pwqznprsaqpagny6zcwwmz480x4pmfz";
};
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; [ ];
};
}