From 766c3374454fc52be91212c3f67ddd3a06e3277b Mon Sep 17 00:00:00 2001 From: Malte Brandy Date: Fri, 15 May 2020 03:42:15 +0200 Subject: go-neb: Init at unstable-2020-04-09 --- .../instant-messengers/go-neb/default.nix | 25 ++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 pkgs/applications/networking/instant-messengers/go-neb/default.nix (limited to 'pkgs/applications/networking/instant-messengers/go-neb/default.nix') diff --git a/pkgs/applications/networking/instant-messengers/go-neb/default.nix b/pkgs/applications/networking/instant-messengers/go-neb/default.nix new file mode 100644 index 0000000000000..a82e39647de02 --- /dev/null +++ b/pkgs/applications/networking/instant-messengers/go-neb/default.nix @@ -0,0 +1,25 @@ +{ lib, buildGoModule, fetchFromGitHub }: + +buildGoModule { + pname = "go-neb"; + version = "unstable-2020-04-09"; + src = fetchFromGitHub { + owner = "matrix-org"; + repo = "go-neb"; + rev = "1e297c50ad2938e511a3c86f4b190fd3fc3559d6"; + sha256 = "1azwy4s4kmypps1fjbz76flpi1b7sjzjj4qwx94cry0hn3qfnrc6"; + }; + + subPackages = [ "." ]; + + patches = [ ./go-mod.patch ]; + + vendorSha256 = "1k3980yf6zl00dkd1djwhm2f9nnffzrsbs3kq3alpw2gm0aln739"; + + meta = with lib; { + description = "Extensible matrix bot written in Go"; + homepage = "https://github.com/matrix-org/go-neb"; + license = licenses.asl20; + maintainers = with maintainers; [ hexa maralorn ]; + }; +} -- cgit 1.4.1