blob: 50c058d76bbfe5e3bf0be15341936ed3f96add43 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
{ lib, buildGoModule, fetchFromGitHub }:
# TODO: needs:
# - tests
# - `meta` attribute
buildGoModule rec {
pname = "sliding-sync";
version = "0.99.1";
src = fetchFromGitHub {
owner = "matrix-org";
repo = "sliding-sync";
rev = "v${version}";
sha256 = "sha256-g1yMGb8taToEFG6N057yPcdZB855r0f6EwnJ98FIiic=";
};
vendorHash = "sha256-FmibAVjKeJUrMSlhoE7onLoa4EVjQvjDI4oU4PB5LBE=";
subPackages = [
"cmd/syncv3"
];
}
|