9bb3fccb5b
continuation of #109595 pkgconfig was aliased in 2018, however, it remained in all-packages.nix due to its wide usage. This cleans up the remaining references to pkgs.pkgsconfig and moves the entry to aliases.nix. python3Packages.pkgconfig remained unchanged because it's the canonical name of the upstream package on pypi.
61 lines
1.4 KiB
Nix
61 lines
1.4 KiB
Nix
{ stdenv
|
|
, fetchFromGitHub
|
|
, fetchpatch
|
|
, cmake
|
|
, pkg-config
|
|
, boost17x
|
|
, openssl
|
|
, zlib
|
|
, libsodium
|
|
, olm
|
|
, spdlog
|
|
, nlohmann_json
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "mtxclient";
|
|
version = "0.3.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Nheko-Reborn";
|
|
repo = "mtxclient";
|
|
rev = "v${version}";
|
|
sha256 = "1dg4dq20g0ah62j5s3gpsxqq4ny7lxkxdxa9q6g54hdwkrb9ms7x";
|
|
};
|
|
|
|
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
|
|
zlib
|
|
libsodium
|
|
olm
|
|
];
|
|
|
|
meta = with stdenv.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 ];
|
|
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;
|
|
};
|
|
}
|