nixpkgs/pkgs/servers/mattermost/matterircd.nix

24 lines
562 B
Nix
Raw Permalink Normal View History

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