vifm: 0.13 -> 0.14 (#380559)
[NixPkgs.git] / pkgs / by-name / ma / matterircd / package.nix
blob68641888699228d93d0c20d9f9897ced2a829b9d
2   lib,
3   buildGoModule,
4   fetchFromGitHub,
5 }:
7 buildGoModule rec {
8   pname = "matterircd";
9   version = "0.28.0";
11   src = fetchFromGitHub {
12     owner = "42wim";
13     repo = "matterircd";
14     rev = "v${version}";
15     sha256 = "sha256-qA07i31fGLLIfWoCBW1f5nvf4AWEIkSXZh22F6rRnpM=";
16   };
18   vendorHash = null;
20   ldflags = [
21     "-s"
22     "-w"
23   ];
25   meta = with lib; {
26     description = "Minimal IRC server bridge to Mattermost";
27     mainProgram = "matterircd";
28     homepage = "https://github.com/42wim/matterircd";
29     license = licenses.mit;
30     maintainers = with maintainers; [ numinit ];
31   };