xin/pkgs/sliding-sync.nix

26 lines
662 B
Nix
Raw Normal View History

2023-03-04 05:21:58 -07:00
{ lib, buildGoModule, fetchFromGitHub, ... }:
with lib;
buildGoModule rec {
pname = "sliding-sync";
2023-06-20 07:00:25 -06:00
version = "0.99.3";
2023-03-04 05:21:58 -07:00
src = fetchFromGitHub {
owner = "matrix-org";
repo = pname;
rev = "v${version}";
2023-06-20 07:00:25 -06:00
hash = "sha256-lmmOq0gkvrIXQmy3rbTga0cC85t0LWjDOqrH1NWUpdA=";
2023-03-04 05:21:58 -07:00
};
2023-06-20 07:00:25 -06:00
vendorHash = "sha256-447P2TbBUEHmHubHiiZCrFVCj2/tmEuYFzLo27UyCk4=";
2023-03-04 05:21:58 -07:00
# 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 ];
};
}