nixpkgs/pkgs/development/libraries/olm/default.nix

26 lines
609 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitLab, cmake }:
2017-02-09 19:27:13 +00:00
stdenv.mkDerivation rec {
pname = "olm";
version = "3.2.2";
2017-02-09 19:27:13 +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
};
nativeBuildInputs = [ cmake ];
doCheck = true;
2019-11-15 14:18:15 +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";
license = licenses.asl20;
maintainers = with maintainers; [ tilpner oxzi ];
2019-11-15 14:18:15 +00:00
};
2017-02-09 19:27:13 +00:00
}