2023-01-13 02:19:02 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
2020-04-30 06:57:48 +00:00
|
|
|
, fetchFromGitHub
|
|
|
|
, fetchpatch
|
|
|
|
, cmake
|
2021-01-19 06:50:56 +00:00
|
|
|
, pkg-config
|
2021-11-19 10:27:11 +00:00
|
|
|
, coeurl
|
|
|
|
, curl
|
2023-01-13 02:19:02 +00:00
|
|
|
, libevent
|
|
|
|
, nlohmann_json
|
|
|
|
, olm
|
|
|
|
, openssl
|
|
|
|
, re2
|
|
|
|
, spdlog
|
2020-04-30 06:57:48 +00:00
|
|
|
}:
|
2018-09-09 20:12:52 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "mtxclient";
|
2023-02-23 16:49:52 +00:00
|
|
|
version = "0.9.2";
|
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}";
|
2023-02-23 16:49:52 +00:00
|
|
|
hash = "sha256-r+bD2L5+3AwkdYa3FwsM+yf7V5w+6ZJC92CMdVeYLJQ=";
|
2018-09-09 20:12:52 +00:00
|
|
|
};
|
|
|
|
|
2021-11-19 10:27:11 +00:00
|
|
|
postPatch = ''
|
|
|
|
# See https://github.com/gabime/spdlog/issues/1897
|
|
|
|
sed -i '1a add_compile_definitions(SPDLOG_FMT_EXTERNAL)' CMakeLists.txt
|
|
|
|
'';
|
2021-10-22 16:14:22 +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"
|
2019-03-25 17:49:40 +00:00
|
|
|
];
|
|
|
|
|
2020-04-30 06:57:48 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
cmake
|
2021-01-19 06:50:56 +00:00
|
|
|
pkg-config
|
2020-04-30 06:57:48 +00:00
|
|
|
];
|
2023-01-13 02:19:02 +00:00
|
|
|
|
2020-04-30 06:57:48 +00:00
|
|
|
buildInputs = [
|
2021-11-19 10:27:11 +00:00
|
|
|
coeurl
|
|
|
|
curl
|
2023-01-13 02:19:02 +00:00
|
|
|
libevent
|
|
|
|
nlohmann_json
|
|
|
|
olm
|
|
|
|
openssl
|
|
|
|
re2
|
|
|
|
spdlog
|
2020-04-30 06:57:48 +00:00
|
|
|
];
|
2018-09-09 20:12:52 +00:00
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
meta = with lib; {
|
2021-11-19 10:27:11 +00:00
|
|
|
description = "Client API library for the Matrix protocol.";
|
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;
|
2021-01-22 09:53:17 +00:00
|
|
|
maintainers = with maintainers; [ fpletz pstn ];
|
2020-04-30 07:25:38 +00: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 20:12:52 +00:00
|
|
|
};
|
|
|
|
}
|