package matrix-corporal
This commit is contained in:
parent
129a51188c
commit
65e91d24a3
|
@ -22,6 +22,8 @@ in
|
|||
|
||||
matrix-wug = pkgs.callPackage ./pkgs/matrix-wug { };
|
||||
|
||||
matrix-corporal = pkgs.callPackage ./pkgs/matrix-corporal { };
|
||||
|
||||
rank_photos = pkgs.callPackage ./pkgs/rank_photos { };
|
||||
vcsi = pkgs.callPackage ./pkgs/vcsi {};
|
||||
|
||||
|
|
|
@ -0,0 +1,22 @@
|
|||
{lib, fetchFromGitHub, buildGoModule }:
|
||||
|
||||
buildGoModule {
|
||||
pname = "matrix-corporal";
|
||||
version = "1.9.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "devture";
|
||||
repo = "matrix-corporal";
|
||||
rev = "1.9.0";
|
||||
sha256 = "0zwfvlhp9j3skz6ryi01d7ps3wm8kb3njcbjf0bl1gv2h0cjhlji";
|
||||
};
|
||||
|
||||
vendorSha256 = "1fghbl0b418ld5szjafbiz3vp773skc0l6kaif5c2vsh2ivgr6hl";
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/devture/matrix-corporal";
|
||||
description = "Reconciliator and gateway for a managed Matrix server";
|
||||
license = licenses.agpl3;
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue