b964c5da83
Patch adapted from upstream b452a984b0fc522c21bb8df7d320bf13960974d0, which did not apply due to whitespace changes.
60 lines
1.5 KiB
Nix
60 lines
1.5 KiB
Nix
{ lib, stdenv
|
|
, fetchFromGitHub
|
|
, fetchpatch
|
|
, cmake
|
|
, pkg-config
|
|
, boost17x
|
|
, openssl
|
|
, olm
|
|
, spdlog
|
|
, nlohmann_json
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "mtxclient";
|
|
version = "0.5.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Nheko-Reborn";
|
|
repo = "mtxclient";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-UKroV1p7jYuNzCAFMsuUsYC/C9AZ1D4rhwpwuER39vc=";
|
|
};
|
|
|
|
# This patch should be obsolete and should stop applying the in next release.
|
|
patches = [ ./fix-compilation-with-olm-3.2.5.patch ];
|
|
|
|
cmakeFlags = [
|
|
# Network requiring tests can't be disabled individually:
|
|
# https://github.com/Nheko-Reborn/mtxclient/issues/22
|
|
"-DBUILD_LIB_TESTS=OFF"
|
|
"-DBUILD_LIB_EXAMPLES=OFF"
|
|
"-Dnlohmann_json_DIR=${nlohmann_json}/lib/cmake/nlohmann_json"
|
|
# 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"
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
pkg-config
|
|
];
|
|
buildInputs = [
|
|
spdlog
|
|
boost17x
|
|
openssl
|
|
olm
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Client API library for Matrix, built on top of Boost.Asio";
|
|
homepage = "https://github.com/Nheko-Reborn/mtxclient";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ fpletz pstn ];
|
|
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;
|
|
};
|
|
}
|