3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/servers/mattermost/matterircd.nix

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

26 lines
555 B
Nix
Raw Normal View History

2022-05-02 05:53:06 +01:00
{ lib, buildGoModule, fetchFromGitHub }:
2016-08-15 02:17:36 +01:00
2022-05-02 05:53:06 +01:00
buildGoModule rec {
pname = "matterircd";
2022-05-02 05:53:06 +01:00
version = "0.25.1";
2016-08-15 02:17:36 +01:00
src = fetchFromGitHub {
owner = "42wim";
repo = "matterircd";
rev = "v${version}";
2022-05-02 05:53:06 +01:00
sha256 = "sha256-qglr0QN0ca6waxhwEFgYP9RHvTJ4YVn90vl+crcktao=";
2016-08-15 02:17:36 +01:00
};
2022-05-02 05:53:06 +01:00
vendorSha256 = null;
ldflags = [ "-s" "-w" ];
2016-08-15 02:17:36 +01:00
meta = with lib; {
2016-08-15 02:17:36 +01:00
inherit (src.meta) homepage;
description = "Minimal IRC server bridge to Mattermost";
license = licenses.mit;
maintainers = with maintainers; [ ];
2016-08-15 02:17:36 +01:00
platforms = platforms.unix;
};
}