2023-09-12 08:44:05 -06:00
|
|
|
{ lib
|
|
|
|
, buildGoModule
|
|
|
|
, fetchFromGitHub
|
|
|
|
, ...
|
2023-07-11 09:12:50 -06:00
|
|
|
}:
|
2023-03-04 05:21:58 -07:00
|
|
|
with lib;
|
2023-09-12 08:44:05 -06:00
|
|
|
buildGoModule rec {
|
|
|
|
pname = "sliding-sync";
|
|
|
|
version = "0.99.10";
|
2023-03-04 05:21:58 -07:00
|
|
|
|
2023-09-12 08:44:05 -06:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "matrix-org";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
|
|
|
hash = "sha256-TjChelGVicA59q6iIIDTI7nSj8KtjpA4bfZqsfoiOQg=";
|
|
|
|
};
|
2023-03-04 05:21:58 -07:00
|
|
|
|
2023-09-12 08:44:05 -06:00
|
|
|
vendorHash = "sha256-E3nCcw6eTKKcL55ls6n5pYlRFffsefsN0G1Hwd49uh8=";
|
2023-03-04 05:21:58 -07:00
|
|
|
|
2023-09-12 08:44:05 -06:00
|
|
|
# Note: tests require a postgres install accessible to the current user
|
|
|
|
doCheck = false;
|
2023-03-04 05:21:58 -07:00
|
|
|
|
2023-09-12 08:44:05 -06:00
|
|
|
meta = {
|
|
|
|
description = "An implementation of MSC3575";
|
|
|
|
homepage = "https://github.com/matrix-org/sliding-sync";
|
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ qbit ];
|
|
|
|
};
|
|
|
|
}
|