2020-04-29 23:57:48 -07:00
|
|
|
{ stdenv
|
|
|
|
, fetchFromGitHub
|
|
|
|
, fetchpatch
|
|
|
|
, cmake
|
|
|
|
, pkgconfig
|
2020-04-24 01:09:33 -07:00
|
|
|
, boost17x
|
2020-04-29 23:57:48 -07:00
|
|
|
, openssl
|
|
|
|
, zlib
|
|
|
|
, libsodium
|
|
|
|
, olm
|
2020-04-24 01:09:33 -07:00
|
|
|
, spdlog
|
2020-04-29 23:57:48 -07:00
|
|
|
, nlohmann_json
|
|
|
|
}:
|
2018-09-09 13:12:52 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "mtxclient";
|
2020-04-24 01:09:33 -07:00
|
|
|
version = "0.3.0";
|
2018-09-09 13:12:52 -07:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2019-06-19 05:25:06 -07:00
|
|
|
owner = "Nheko-Reborn";
|
2018-09-09 13:12:52 -07:00
|
|
|
repo = "mtxclient";
|
|
|
|
rev = "v${version}";
|
2020-04-24 01:09:33 -07:00
|
|
|
sha256 = "0vf5xmn6yfi5lvskfgrdmnalvclzrapcrml92bj9qaa8vq8mfsf2";
|
2018-09-09 13:12:52 -07:00
|
|
|
};
|
|
|
|
|
2019-06-19 05:25:06 -07:00
|
|
|
cmakeFlags = [
|
2020-04-30 00:05:16 -07:00
|
|
|
# Network requiring tests can't be disabled individually:
|
|
|
|
# https://github.com/Nheko-Reborn/mtxclient/issues/22
|
2019-06-19 05:25:06 -07:00
|
|
|
"-DBUILD_LIB_TESTS=OFF"
|
|
|
|
"-DBUILD_LIB_EXAMPLES=OFF"
|
|
|
|
"-Dnlohmann_json_DIR=${nlohmann_json}/lib/cmake/nlohmann_json"
|
2019-03-25 10:49:40 -07:00
|
|
|
];
|
|
|
|
|
2020-04-29 23:57:48 -07:00
|
|
|
nativeBuildInputs = [
|
|
|
|
cmake
|
|
|
|
pkgconfig
|
|
|
|
];
|
|
|
|
buildInputs = [
|
2020-04-24 01:09:33 -07:00
|
|
|
spdlog
|
|
|
|
boost17x
|
2020-04-29 23:57:48 -07:00
|
|
|
openssl
|
|
|
|
zlib
|
|
|
|
libsodium
|
|
|
|
olm
|
|
|
|
];
|
2018-09-09 13:12:52 -07:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Client API library for Matrix, built on top of Boost.Asio";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://github.com/Nheko-Reborn/mtxclient";
|
2018-09-09 13:12:52 -07:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ fpletz ];
|
|
|
|
platforms = platforms.unix;
|
2019-07-01 10:14:36 -07:00
|
|
|
|
|
|
|
# As of 2019-06-30, all of the dependencies are available on macOS but the
|
|
|
|
# package itself does not build.
|
|
|
|
broken = stdenv.isDarwin;
|
2018-09-09 13:12:52 -07:00
|
|
|
};
|
|
|
|
}
|