From a9d1253dabbc1f1cf181fd206d9f4690a72170b2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Thu, 4 Sep 2025 14:32:43 -0700 Subject: [PATCH] lokinet: mark broken --- pkgs/by-name/lo/lokinet/package.nix | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/pkgs/by-name/lo/lokinet/package.nix b/pkgs/by-name/lo/lokinet/package.nix index 71814f6431be..84b2008f4eef 100644 --- a/pkgs/by-name/lo/lokinet/package.nix +++ b/pkgs/by-name/lo/lokinet/package.nix @@ -10,20 +10,12 @@ nlohmann_json, pkg-config, spdlog, - fmt_9, sqlite, systemd, unbound, 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; - }; -in stdenv.mkDerivation rec { pname = "lokinet"; version = "0.9.13"; @@ -55,7 +47,7 @@ stdenv.mkDerivation rec { libuv libsodium nlohmann_json - spdlog' + spdlog sqlite systemd unbound @@ -69,6 +61,10 @@ stdenv.mkDerivation rec { ]; meta = { + # Upstream has received reports of incompatibilities with fmt, and other + # dependencies, see: https://github.com/oxen-io/lokinet/issues/2200. + # But our version of spdlog doesn't support fmt_9 + broken = true; description = "Anonymous, decentralized and IP based overlay network for the internet"; homepage = "https://lokinet.org/"; changelog = "https://github.com/oxen-io/lokinet/releases/tag/v${version}";