2021-02-24 18:01:39 +00:00
|
|
|
{ lib, stdenv, fetchFromGitLab, cmake }:
|
2017-02-09 19:27:13 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "olm";
|
2021-02-24 18:01:39 +00:00
|
|
|
version = "3.2.2";
|
2017-02-09 19:27:13 +00:00
|
|
|
|
2021-02-24 18:01:39 +00:00
|
|
|
src = fetchFromGitLab {
|
|
|
|
domain = "gitlab.matrix.org";
|
|
|
|
owner = "matrix-org";
|
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
|
|
|
sha256 = "0qji25wiwmkxyfpraxj96c54hyayqmjkvwh0gsy5gb5pz5bp4mcy";
|
2017-02-09 19:27:13 +00:00
|
|
|
};
|
|
|
|
|
2020-01-07 23:01:53 +00:00
|
|
|
nativeBuildInputs = [ cmake ];
|
2018-05-28 10:09:25 +01:00
|
|
|
|
2020-01-07 23:01:53 +00:00
|
|
|
doCheck = true;
|
2019-11-15 14:18:15 +00:00
|
|
|
|
2021-02-24 18:01:39 +00:00
|
|
|
meta = with lib; {
|
2019-11-15 14:18:15 +00:00
|
|
|
description = "Implements double cryptographic ratchet and Megolm ratchet";
|
2020-06-17 10:15:49 +01:00
|
|
|
homepage = "https://gitlab.matrix.org/matrix-org/olm";
|
2021-02-24 18:01:39 +00:00
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ tilpner oxzi ];
|
2019-11-15 14:18:15 +00:00
|
|
|
};
|
2017-02-09 19:27:13 +00:00
|
|
|
}
|