Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / applications / misc / gomatrix / default.nix
blob2b9ee3a15553ed67475fdac7aa8425beb3260a25
1 { lib, buildGoModule, fetchFromGitHub }:
3 buildGoModule rec {
4   pname = "gomatrix";
5   version = "101.0.0";
7   src = fetchFromGitHub {
8     owner = "GeertJohan";
9     repo = "gomatrix";
10     rev = "v${version}";
11     hash = "sha256-VeRHVR8InfU+vEw2F/w3KFbNVSKS8ziRlQ98f3cuBfM=";
12   };
14   vendorHash = "sha256-yQSsxiWkihpoYBH9L6by/D2alqECoUEG4ei5T+B9gPs=";
16   doCheck = false;
18   meta = with lib; {
19     description = ''Displays "The Matrix" in a terminal'';
20     license = licenses.bsd2;
21     maintainers = with maintainers; [ skykanin ];
22     homepage = "https://github.com/GeertJohan/gomatrix";
23   };