nixpkgs/pkgs/development/libraries/mtxclient/default.nix

57 lines
1.4 KiB
Nix
Raw Normal View History

{ lib, stdenv
2020-04-30 06:57:48 +00:00
, fetchFromGitHub
, fetchpatch
, cmake
, pkg-config
2020-04-24 08:09:33 +00:00
, boost17x
2020-04-30 06:57:48 +00:00
, openssl
, 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 {
pname = "mtxclient";
2021-04-20 16:20:48 +00:00
version = "0.5.1";
2018-09-09 20:12:52 +00:00
src = fetchFromGitHub {
owner = "Nheko-Reborn";
2018-09-09 20:12:52 +00:00
repo = "mtxclient";
rev = "v${version}";
2021-04-20 16:20:48 +00:00
sha256 = "sha256-UKroV1p7jYuNzCAFMsuUsYC/C9AZ1D4rhwpwuER39vc=";
2018-09-09 20:12:52 +00:00
};
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"
2020-04-24 22:37:30 +00: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"
];
2020-04-30 06:57:48 +00:00
nativeBuildInputs = [
cmake
pkg-config
2020-04-30 06:57:48 +00:00
];
buildInputs = [
2020-04-24 08:09:33 +00:00
spdlog
boost17x
2020-04-30 06:57:48 +00:00
openssl
olm
];
2018-09-09 20:12:52 +00:00
meta = with lib; {
2018-09-09 20:12:52 +00:00
description = "Client API library for Matrix, built on top of Boost.Asio";
homepage = "https://github.com/Nheko-Reborn/mtxclient";
2018-09-09 20:12:52 +00:00
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;
2018-09-09 20:12:52 +00:00
};
}