lokinet: build with fmt9

This commit is contained in:
Tobias Mayer 2023-08-27 08:02:15 +02:00
parent 05a33a5015
commit 383550ca69
No known key found for this signature in database
GPG Key ID: F8657E90819A1298

View File

@ -8,13 +8,20 @@
, nlohmann_json , nlohmann_json
, pkg-config , pkg-config
, spdlog , spdlog
, fmt_9
, sqlite , sqlite
, systemd , systemd
, unbound , unbound
, zeromq , zeromq
}: }:
let
# Upstream has received reports of incompatibilities with fmt, and other
# dependencies, see: https://github.com/oxen-io/lokinet/issues/2200.
spdlog' = spdlog.override {
fmt = fmt_9;
};
stdenv.mkDerivation rec { in stdenv.mkDerivation rec {
pname = "lokinet"; pname = "lokinet";
version = "0.9.11"; version = "0.9.11";
@ -36,7 +43,7 @@ stdenv.mkDerivation rec {
libuv libuv
libsodium libsodium
nlohmann_json nlohmann_json
spdlog spdlog'
sqlite sqlite
systemd systemd
unbound unbound