mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
claws: init at 0.3.2
This commit is contained in:
parent
bfcab98074
commit
27977f030f
23
pkgs/tools/misc/claws/default.nix
Normal file
23
pkgs/tools/misc/claws/default.nix
Normal file
@ -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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user