31 lines
706 B
Nix
31 lines
706 B
Nix
{
|
|
lib,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
...
|
|
}:
|
|
with lib;
|
|
buildGoModule rec {
|
|
pname = "sliding-sync";
|
|
version = "0.99.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "matrix-org";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
hash = "sha256-s7hQ4qCOhkNS8Mc2HZjFqedtj0KqXMAxVMZRIjPyvOA=";
|
|
};
|
|
|
|
vendorHash = "sha256-447P2TbBUEHmHubHiiZCrFVCj2/tmEuYFzLo27UyCk4=";
|
|
|
|
# Note: tests require a postgres install accessible to the current user
|
|
doCheck = false;
|
|
|
|
meta = {
|
|
description = "An implementation of MSC3575";
|
|
homepage = "https://github.com/matrix-org/sliding-sync";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [qbit];
|
|
};
|
|
}
|