From dceae2acce296067780e73e6e79a99c769e8379e Mon Sep 17 00:00:00 2001 From: Dmitry Kalinkin Date: Sun, 2 Jan 2022 18:22:24 -0500 Subject: [PATCH] frescobaldi: mark as broken on darwin --- pkgs/misc/frescobaldi/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/misc/frescobaldi/default.nix b/pkgs/misc/frescobaldi/default.nix index 60fee5a6c861..03a402225f1b 100644 --- a/pkgs/misc/frescobaldi/default.nix +++ b/pkgs/misc/frescobaldi/default.nix @@ -1,4 +1,4 @@ -{ lib, buildPythonApplication, fetchFromGitHub, python3Packages, pyqtwebengine, lilypond }: +{ lib, stdenv, buildPythonApplication, fetchFromGitHub, python3Packages, pyqtwebengine, lilypond }: buildPythonApplication rec { pname = "frescobaldi"; @@ -51,5 +51,6 @@ buildPythonApplication rec { license = licenses.gpl2Plus; maintainers = with maintainers; [ sepi ]; platforms = platforms.all; + broken = stdenv.isDarwin; # never built on Hydra https://hydra.nixos.org/job/nixpkgs/trunk/frescobaldi.x86_64-darwin }; }