gomuks: init at 2018-05-16

This commit is contained in:
tilpner 2018-05-14 19:18:19 +02:00
parent 136f1c4706
commit c1efa89126
No known key found for this signature in database
GPG Key ID: 6A13327225BE51F6
2 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,23 @@
{ stdenv, buildGo110Package, fetchFromGitHub }:
buildGo110Package rec {
name = "gomuks-${version}";
version = "2018-05-16";
goPackagePath = "maunium.net/go/gomuks";
src = fetchFromGitHub {
owner = "tulir";
repo = "gomuks";
rev = "512ca88804268bf58a754e8a02be556f953db317";
sha256 = "1bpgjkpvqqks3ljw9s0hm5pgscjs4rjy8rfpl2444m4rbpz1xvmr";
};
meta = with stdenv.lib; {
homepage = https://maunium.net/go/gomuks/;
description = "A terminal based Matrix client written in Go";
license = licenses.gpl3;
maintainers = with maintainers; [ tilpner ];
platforms = platforms.unix;
};
}

View File

@ -15773,6 +15773,8 @@ with pkgs;
goldendict = libsForQt5.callPackage ../applications/misc/goldendict { };
gomuks = callPackage ../applications/networking/instant-messengers/gomuks { };
inherit (ocamlPackages) google-drive-ocamlfuse;
google-musicmanager = callPackage ../applications/audio/google-musicmanager { };