Skip to content

Commit 0ee528d

Browse files
committed
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`.
1 parent e06158e commit 0ee528d

File tree

1 file changed

+2
-2
lines changed
  • pkgs/development/libraries/gssdp

1 file changed

+2
-2
lines changed

pkgs/development/libraries/gssdp/1.6.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,8 @@ stdenv.mkDerivation rec {
6060
(lib.mesonBool "manpages" enableManpages)
6161
];
6262

63-
doCheck = true;
63+
# On Darwin: Failed to bind socket, Operation not permitted
64+
doCheck = !stdenv.hostPlatform.isDarwin;
6465

6566
postFixup = ''
6667
# Move developer documentation to devdoc output.
@@ -83,7 +84,6 @@ stdenv.mkDerivation rec {
8384
};
8485

8586
meta = with lib; {
86-
broken = stdenv.hostPlatform.isDarwin;
8787
description = "GObject-based API for handling resource discovery and announcement over SSDP";
8888
homepage = "http://www.gupnp.org/";
8989
license = licenses.lgpl2Plus;

0 commit comments

Comments
 (0)