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

55 lines
1.1 KiB
Nix
Raw Normal View History

2020-04-30 06:57:48 +00:00
{ stdenv
, fetchFromGitHub
, fetchpatch
, cmake
, pkgconfig
, boost
, openssl
, zlib
, libsodium
, olm
, nlohmann_json
}:
2018-09-09 20:12:52 +00:00
stdenv.mkDerivation rec {
pname = "mtxclient";
version = "0.2.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}";
sha256 = "0pycznrvj57ff6gbwfn1xj943d2dr4vadl79hii1z16gn0nzxpmj";
2018-09-09 20:12:52 +00:00
};
cmakeFlags = [
"-DBUILD_LIB_TESTS=OFF"
"-DBUILD_LIB_EXAMPLES=OFF"
"-Dnlohmann_json_DIR=${nlohmann_json}/lib/cmake/nlohmann_json"
];
2020-04-30 06:57:48 +00:00
nativeBuildInputs = [
cmake
pkgconfig
];
buildInputs = [
boost
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";
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;
# 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
};
}