2021-01-25 00:26:54 -08:00
|
|
|
{ lib, buildGoPackage, fetchFromGitHub }:
|
2016-08-14 18:17:36 -07:00
|
|
|
|
|
|
|
buildGoPackage rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "matterircd";
|
2021-03-02 17:41:27 -08:00
|
|
|
version = "0.23.1";
|
2016-08-14 18:17:36 -07:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "42wim";
|
|
|
|
repo = "matterircd";
|
|
|
|
rev = "v${version}";
|
2021-03-02 17:41:27 -08:00
|
|
|
sha256 = "sha256-1oItl0mLyAFah9qaaYl+IAT/H4X+GW82GBHYuLWacVI=";
|
2016-08-14 18:17:36 -07:00
|
|
|
};
|
|
|
|
|
2018-03-14 21:30:49 -07:00
|
|
|
goPackagePath = "github.com/42wim/matterircd";
|
2016-08-14 18:17:36 -07:00
|
|
|
|
2021-01-10 23:54:33 -08:00
|
|
|
meta = with lib; {
|
2016-08-14 18:17:36 -07:00
|
|
|
inherit (src.meta) homepage;
|
|
|
|
description = "Minimal IRC server bridge to Mattermost";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ fpletz ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|