nixpkgs/pkgs/servers/dendrite/default.nix

28 lines
687 B
Nix
Raw Normal View History

2021-05-14 11:11:22 +00:00
{ lib, buildGoModule, fetchFromGitHub, nixosTests }:
2021-01-16 18:06:05 +00:00
buildGoModule rec {
pname = "matrix-dendrite";
2021-07-28 14:43:43 +00:00
version = "0.4.1";
2021-01-16 18:06:05 +00:00
src = fetchFromGitHub {
owner = "matrix-org";
repo = "dendrite";
rev = "v${version}";
2021-07-28 14:43:43 +00:00
sha256 = "sha256-F2e+peM7DBihmos/oPar36UDHkibmlzIknCjMauOph8=";
2021-01-16 18:06:05 +00:00
};
2021-07-28 14:43:43 +00:00
vendorSha256 = "sha256-M6mnFO+SInZNvtwMa02TvHIg14Ve7swlGcYfsQFioxQ=";
2021-01-16 18:06:05 +00:00
2021-05-14 11:11:22 +00: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;
};
}