Skip to content

Commit

Permalink
Merge pull request #64549 from petabyteboy/feature/claws
Browse files Browse the repository at this point in the history
claws: init at 0.3.2
  • Loading branch information
aanderse committed Aug 27, 2019
2 parents 8867b24 + 27977f0 commit 3c3f198
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
23 changes: 23 additions & 0 deletions pkgs/tools/misc/claws/default.nix
@@ -0,0 +1,23 @@
{ stdenv, 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 stdenv.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; [ petabyteboy ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Expand Up @@ -770,6 +770,8 @@ in

chkcrontab = callPackage ../tools/admin/chkcrontab { };

claws = callPackage ../tools/misc/claws { };

codespell = with python3Packages; toPythonApplication codespell;

cozy = callPackage ../applications/audio/cozy-audiobooks { };
Expand Down

0 comments on commit 3c3f198

Please sign in to comment.