From 1c003da73c7ca9e997a85781261ecd379eb4dd9a Mon Sep 17 00:00:00 2001 From: Maximilian Bosch Date: Tue, 27 Feb 2024 23:44:38 +0100 Subject: [PATCH] _389ds-base: mark as broken Doesn't build with glibc 2.39. There's a potential fix documented in https://github.com/389ds/389-ds-base/issues/5332, but the package is too old for the patch to apply, so I'll mark it as broken for now and leave it to the maintainer to update & fix. --- pkgs/servers/ldap/389/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/servers/ldap/389/default.nix b/pkgs/servers/ldap/389/default.nix index 18aeea04cb62..ce61f9676e18 100644 --- a/pkgs/servers/ldap/389/default.nix +++ b/pkgs/servers/ldap/389/default.nix @@ -141,5 +141,9 @@ stdenv.mkDerivation rec { license = licenses.gpl3Plus; platforms = platforms.linux; maintainers = [ maintainers.ners ]; + # https://hydra.nixos.org/build/249763145, doesn't build since glibc 2.39. + # Potential fix is documented in https://github.com/389ds/389-ds-base/issues/5332, + # but it doesn't apply here. + broken = true; }; }