From 6ad224ce9a610cbf0a617908d9eca8fb54b5d813 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stanis=C5=82aw=20Pitucha?= Date: Tue, 21 Mar 2023 13:10:52 +1100 Subject: [PATCH] mellowplayer: mark broken on darwin Fails when building tests because Carbon is not found, even though the framework is installed. Since the project is not maintainer, mark it as broken instead of debugging. --- pkgs/applications/audio/mellowplayer/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/applications/audio/mellowplayer/default.nix b/pkgs/applications/audio/mellowplayer/default.nix index 5bdcb81fb633..b736ae882990 100644 --- a/pkgs/applications/audio/mellowplayer/default.nix +++ b/pkgs/applications/audio/mellowplayer/default.nix @@ -10,6 +10,7 @@ , qtquickcontrols2 , qttools , qtwebengine +, stdenv }: mkDerivation rec { @@ -61,6 +62,7 @@ mkDerivation rec { meta = with lib; { inherit (qtbase.meta) platforms; + broken = stdenv.isDarwin; # test build fails, but the project is not maintained anymore description = "Cloud music integration for your desktop"; homepage = "https://gitlab.com/ColinDuquesnoy/MellowPlayer";