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`.
This commit is contained in:
Jan Tojnar
2025-05-17 22:33:10 +02:00
parent e06158e58f
commit 0ee528d2cc
+2 -2
View File
@@ -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;