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