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 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 {
pname = "matterircd";
2023-08-16 05:48:31 +00:00
version = "0.27.1";
2016-08-15 01:17:36 +00:00
src = fetchFromGitHub {
owner = "42wim";
repo = "matterircd";
rev = "v${version}";
2023-08-16 05:48:31 +00:00
sha256 = "sha256-bDM+P9UwH4cpieOQQfEi2xIKTRQ1zInW9iFK3yAU1Xk=";
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
meta = with lib; {
2016-08-15 01:17:36 +00:00
description = "Minimal IRC server bridge to Mattermost";
homepage = "https://github.com/42wim/matterircd";
2016-08-15 01:17:36 +00:00
license = licenses.mit;
maintainers = with maintainers; [ ];
2016-08-15 01:17:36 +00:00
};
}