evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / go / gomatrix / package.nix
blob001b57d06eec3ece50f908b7d2d9c6fa65ca3b43
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     mainProgram = "gomatrix";
24   };