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