nixpkgs/pkgs/servers/mattermost/matterircd.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
542 B
Nix
Raw Normal View History

2022-05-02 07:53:06 +03:00
{ lib, buildGoModule, fetchFromGitHub }:
2016-08-15 04:17:36 +03:00
2022-05-02 07:53:06 +03:00
buildGoModule rec {
pname = "matterircd";
2023-10-25 18:24:39 +03:00
version = "0.28.0";
2016-08-15 04:17:36 +03:00
src = fetchFromGitHub {
owner = "42wim";
repo = "matterircd";
rev = "v${version}";
2023-10-25 18:24:39 +03:00
sha256 = "sha256-qA07i31fGLLIfWoCBW1f5nvf4AWEIkSXZh22F6rRnpM=";
2016-08-15 04:17:36 +03:00
};
2023-04-20 15:38:19 +03:00
vendorHash = null;
2022-05-02 07:53:06 +03:00
ldflags = [ "-s" "-w" ];
2016-08-15 04:17:36 +03:00
meta = with lib; {
2016-08-15 04:17:36 +03:00
description = "Minimal IRC server bridge to Mattermost";
homepage = "https://github.com/42wim/matterircd";
2016-08-15 04:17:36 +03:00
license = licenses.mit;
maintainers = with maintainers; [ ];
2016-08-15 04:17:36 +03:00
};
}