From 109fd88d0e519e1508b7c2e6dfc7c9cedc4ac78c Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Mon, 4 May 2026 15:53:13 +0200 Subject: [PATCH] solanum: mark broken on darwin > Solanum is developed on Linux with glibc, but is currently portable > to most POSIX-compatible operating systems. However, this portability > is likely to be removed unless someone is willing to maintain it. If > you'd like to be that person, please let us know on IRC. But darwin apparently broke: In file included from librb/version.c:23: librb/../include/serno.h:1:10: fatal error: 'datecode.h' file not found 1 | #include "datecode.h" | ^~~~~~~~~~~~ --- pkgs/by-name/so/solanum/package.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/by-name/so/solanum/package.nix b/pkgs/by-name/so/solanum/package.nix index 97c02654c93a..6807e5202869 100644 --- a/pkgs/by-name/so/solanum/package.nix +++ b/pkgs/by-name/so/solanum/package.nix @@ -85,6 +85,7 @@ stdenv.mkDerivation (finalAttrs: { }; meta = { + broken = stdenv.hostPlatform.isDarwin; description = "IRCd for unified networks"; homepage = "https://github.com/solanum-ircd/solanum"; license = lib.licenses.gpl2Plus;