Merge pull request #81799 from skykanin/master

gomatrix: init at 101.0.0
This commit is contained in:
Mario Rodas 2020-03-08 21:40:57 -05:00 committed by GitHub
commit f32e17d802
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,22 @@
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "gomatrix";
version = "101.0.0";
src = fetchFromGitHub {
owner = "GeertJohan";
repo = "gomatrix";
rev = "v${version}";
sha256 = "1wq55rvpyz0gjn8kiwwj49awsmi86zy1fdjcphzgb7883xalgr2m";
};
modSha256 = "13higizadnf4ypk8qn1b5s6mdg7n6l3indb43mjp1b4cfzjsyl91";
meta = with lib; {
description = ''Displays "The Matrix" in a terminal'';
license = licenses.bsd2;
maintainers = with maintainers; [ skykanin ];
homepage = "https://github.com/GeertJohan/gomatrix";
};
}

View File

@ -933,6 +933,8 @@ in
glasgow = with python3Packages; toPythonApplication glasgow;
gomatrix = callPackage ../applications/misc/gomatrix { };
gucci = callPackage ../tools/text/gucci { };
grc = callPackage ../tools/misc/grc { };