nixpkgs/pkgs/servers/dendrite/default.nix

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

42 lines
1.0 KiB
Nix
Raw Normal View History

2022-05-14 07:04:03 +00:00
{ lib, buildGoModule, fetchFromGitHub
, nixosTests, postgresql, postgresqlTestHook }:
2021-01-16 18:06:05 +00:00
buildGoModule rec {
pname = "matrix-dendrite";
2022-08-19 21:51:09 +00:00
version = "0.9.4";
2021-01-16 18:06:05 +00:00
src = fetchFromGitHub {
owner = "matrix-org";
repo = "dendrite";
rev = "v${version}";
2022-08-19 21:51:09 +00:00
sha256 = "sha256-UB51Rd0AWEfj6qTfrRSWK/dq9MdLCqYoR/Gjwf65ZQk=";
2021-01-16 18:06:05 +00:00
};
2022-08-15 21:22:20 +00:00
vendorSha256 = "sha256-tgVImIfn1lPTYGXczoAxVta3L+VR0v13KowLIYQ7bwY=";
2022-05-01 07:45:12 +00:00
checkInputs = [
postgresqlTestHook
postgresql
];
postgresqlTestUserOptions = "LOGIN SUPERUSER";
preCheck = ''
export PGUSER=$(whoami)
# temporarily disable this failing test
# it passes in upstream CI and requires further investigation
rm roomserver/internal/input/input_test.go
'';
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; {
2022-05-14 07:04:03 +00:00
homepage = "https://matrix-org.github.io/dendrite";
description = "A second-generation Matrix homeserver written in Go";
2021-01-16 18:06:05 +00:00
license = licenses.asl20;
maintainers = teams.matrix.members;
platforms = platforms.unix;
};
}