From 0ee528d2cc689dfdb639688ebe3ca73721768276 Mon Sep 17 00:00:00 2001 From: Jan Tojnar Date: Sat, 17 May 2025 22:25:23 +0200 Subject: [PATCH] gssdp_1_6: Unbreak on Darwin Only all the tests are broken: ERROR:../tests/test-functional.c:491:test_client_creation: assertion failed (error == NULL): Failed to bind socketError binding to address 169.254.192.89:1900: Operation not permitted (g-io-error-quark, 14) But we already disable them on the old `gssdp`. --- pkgs/development/libraries/gssdp/1.6.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/gssdp/1.6.nix b/pkgs/development/libraries/gssdp/1.6.nix index caab2b7c865d..0763e0586611 100644 --- a/pkgs/development/libraries/gssdp/1.6.nix +++ b/pkgs/development/libraries/gssdp/1.6.nix @@ -60,7 +60,8 @@ stdenv.mkDerivation rec { (lib.mesonBool "manpages" enableManpages) ]; - doCheck = true; + # On Darwin: Failed to bind socket, Operation not permitted + doCheck = !stdenv.hostPlatform.isDarwin; postFixup = '' # Move developer documentation to devdoc output. @@ -83,7 +84,6 @@ stdenv.mkDerivation rec { }; meta = with lib; { - broken = stdenv.hostPlatform.isDarwin; description = "GObject-based API for handling resource discovery and announcement over SSDP"; homepage = "http://www.gupnp.org/"; license = licenses.lgpl2Plus;