2021-05-14 12:11:22 +01:00
|
|
|
{ lib, buildGoModule, fetchFromGitHub, nixosTests }:
|
2021-01-16 18:06:05 +00:00
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "matrix-dendrite";
|
2021-07-20 15:21:35 +01:00
|
|
|
version = "0.4.0";
|
2021-01-16 18:06:05 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "matrix-org";
|
|
|
|
repo = "dendrite";
|
|
|
|
rev = "v${version}";
|
2021-07-20 15:21:35 +01:00
|
|
|
sha256 = "sha256-BzQp466Zlp7n56n4SUH4cDRTt8EUWGw3q1dxIBB3TBM=";
|
2021-01-16 18:06:05 +00:00
|
|
|
};
|
|
|
|
|
2021-07-20 15:21:35 +01:00
|
|
|
vendorSha256 = "sha256-ak7fWcAXbyVAiyaJZBGMoe2i2nDh4vc/gCC9nbjadJ0=";
|
2021-01-16 18:06:05 +00:00
|
|
|
|
2021-05-14 12:11:22 +01:00
|
|
|
passthru.tests = {
|
|
|
|
inherit (nixosTests) dendrite;
|
|
|
|
};
|
|
|
|
|
2021-01-16 18:06:05 +00:00
|
|
|
meta = with lib; {
|
|
|
|
homepage = "https://matrix.org";
|
|
|
|
description = "Dendrite is a second-generation Matrix homeserver written in Go!";
|
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = teams.matrix.members;
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|