nixpkgs-suyu/pkgs/servers/dendrite/default.nix

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

28 lines
687 B
Nix
Raw Normal View History

2021-05-14 13:11:22 +02:00
{ lib, buildGoModule, fetchFromGitHub, nixosTests }:
2021-01-16 19:06:05 +01:00
buildGoModule rec {
pname = "matrix-dendrite";
2022-03-25 17:53:04 +01:00
version = "0.7.0";
2021-01-16 19:06:05 +01:00
src = fetchFromGitHub {
owner = "matrix-org";
repo = "dendrite";
rev = "v${version}";
2022-03-25 17:53:04 +01:00
sha256 = "sha256-R0xGsngNk8osBh3vRUeYxmEgbbNa+wKOihRjOU40D48=";
2021-01-16 19:06:05 +01:00
};
2022-03-25 17:53:04 +01:00
vendorSha256 = "sha256-0Y/RVRWZ0osU/kEcf+Y8TH8K2rmxFmQSqMMNHoRIugo=";
2021-01-16 19:06:05 +01:00
2021-05-14 13:11:22 +02:00
passthru.tests = {
inherit (nixosTests) dendrite;
};
2021-01-16 19:06:05 +01: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;
};
}