2020-04-30 07:57:48 +01:00
|
|
|
{ stdenv
|
|
|
|
, fetchFromGitHub
|
|
|
|
, fetchpatch
|
|
|
|
, cmake
|
|
|
|
, pkgconfig
|
2020-04-24 09:09:33 +01:00
|
|
|
, boost17x
|
2020-04-30 07:57:48 +01:00
|
|
|
, openssl
|
|
|
|
, zlib
|
|
|
|
, libsodium
|
|
|
|
, olm
|
2020-04-24 09:09:33 +01:00
|
|
|
, spdlog
|
2020-04-30 07:57:48 +01:00
|
|
|
, nlohmann_json
|
|
|
|
}:
|
2018-09-09 21:12:52 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "mtxclient";
|
2020-06-14 23:44:49 +01:00
|
|
|
version = "0.3.1";
|
2018-09-09 21:12:52 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2019-06-19 13:25:06 +01:00
|
|
|
owner = "Nheko-Reborn";
|
2018-09-09 21:12:52 +01:00
|
|
|
repo = "mtxclient";
|
|
|
|
rev = "v${version}";
|
2020-06-14 23:44:49 +01:00
|
|
|
sha256 = "1dg4dq20g0ah62j5s3gpsxqq4ny7lxkxdxa9q6g54hdwkrb9ms7x";
|
2018-09-09 21:12:52 +01:00
|
|
|
};
|
|
|
|
|
2019-06-19 13:25:06 +01:00
|
|
|
cmakeFlags = [
|
2020-04-30 08:05:16 +01:00
|
|
|
# Network requiring tests can't be disabled individually:
|
|
|
|
# https://github.com/Nheko-Reborn/mtxclient/issues/22
|
2019-06-19 13:25:06 +01:00
|
|
|
"-DBUILD_LIB_TESTS=OFF"
|
|
|
|
"-DBUILD_LIB_EXAMPLES=OFF"
|
|
|
|
"-Dnlohmann_json_DIR=${nlohmann_json}/lib/cmake/nlohmann_json"
|
2020-04-24 23:37:30 +01:00
|
|
|
# Can be removed once either https://github.com/NixOS/nixpkgs/pull/85254 or
|
|
|
|
# https://github.com/NixOS/nixpkgs/pull/73940 are merged
|
|
|
|
"-DBoost_NO_BOOST_CMAKE=TRUE"
|
2019-03-25 17:49:40 +00:00
|
|
|
];
|
|
|
|
|
2020-04-30 07:57:48 +01:00
|
|
|
nativeBuildInputs = [
|
|
|
|
cmake
|
|
|
|
pkgconfig
|
|
|
|
];
|
|
|
|
buildInputs = [
|
2020-04-24 09:09:33 +01:00
|
|
|
spdlog
|
|
|
|
boost17x
|
2020-04-30 07:57:48 +01:00
|
|
|
openssl
|
|
|
|
zlib
|
|
|
|
libsodium
|
|
|
|
olm
|
|
|
|
];
|
2018-09-09 21:12:52 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Client API library for Matrix, built on top of Boost.Asio";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/Nheko-Reborn/mtxclient";
|
2018-09-09 21:12:52 +01:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ fpletz ];
|
2020-04-30 08:25:38 +01:00
|
|
|
platforms = platforms.all;
|
|
|
|
# Should be fixable if a higher clang version is used, see:
|
|
|
|
# https://github.com/NixOS/nixpkgs/pull/85922#issuecomment-619287177
|
|
|
|
broken = stdenv.targetPlatform.isDarwin;
|
2018-09-09 21:12:52 +01:00
|
|
|
};
|
|
|
|
}
|