fork
Configure Feed
Select the types of activity you want to include in your feed.
lol
fork
Configure Feed
Select the types of activity you want to include in your feed.
1{ lib, stdenv, fetchFromGitLab, cmake }:
2
3stdenv.mkDerivation rec {
4 pname = "olm";
5 version = "3.2.6";
6
7 src = fetchFromGitLab {
8 domain = "gitlab.matrix.org";
9 owner = "matrix-org";
10 repo = pname;
11 rev = version;
12 sha256 = "1srmw36nxi0z2y5d9adks09p950qm0fscbnrq1fl37fdypvjl1sk";
13 };
14
15 nativeBuildInputs = [ cmake ];
16
17 doCheck = true;
18
19 meta = with lib; {
20 description = "Implements double cryptographic ratchet and Megolm ratchet";
21 homepage = "https://gitlab.matrix.org/matrix-org/olm";
22 license = licenses.asl20;
23 maintainers = with maintainers; [ tilpner oxzi ];
24 };
25}