about summary refs log tree commit diff
path: root/pkgs/development/libraries/olm/default.nix
blob: c84e66608f2a184cd7593da119f14b0beed69b82 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ stdenv, fetchurl, cmake }:

stdenv.mkDerivation rec {
  pname = "olm";
  version = "3.1.4";

  src = fetchurl {
    url = "https://matrix.org/git/olm/-/archive/${version}/${pname}-${version}.tar.gz";
    sha256 = "0f7azjxc77n4ib9nj3cwyk3vhk8r2dsyf7id6nvqyxqxwxn95a8w";
  };

  nativeBuildInputs = [ cmake ];

  doCheck = true;

  meta = {
    description = "Implements double cryptographic ratchet and Megolm ratchet";
    license = stdenv.lib.licenses.asl20;
    homepage = "https://matrix.org/git/olm/about";
    platforms = with stdenv.lib.platforms; darwin ++ linux;
  };
}