From d0cb81a68e621789fd60ed21a4bed4fa9d1b078e Mon Sep 17 00:00:00 2001 From: Benjamin Esham Date: Sat, 1 Feb 2020 20:25:25 -0800 Subject: [PATCH 1/2] lilypond-unstable: mark broken on Darwin See https://github.com/NixOS/nixpkgs/pull/62937 --- pkgs/misc/lilypond/unstable.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pkgs/misc/lilypond/unstable.nix b/pkgs/misc/lilypond/unstable.nix index 5b548038da9..e2c0dccb2e1 100644 --- a/pkgs/misc/lilypond/unstable.nix +++ b/pkgs/misc/lilypond/unstable.nix @@ -1,4 +1,4 @@ -{ fetchgit, lilypond, ghostscript, gyre-fonts }: +{ stdenv, fetchgit, lilypond, ghostscript, gyre-fonts }: let @@ -15,6 +15,10 @@ lilypond.overrideAttrs (oldAttrs: { sha256 = "1ycyx9x76d79jh7wlwyyhdjkyrwnhzqpw006xn2fk35s0jrm2iz0"; }; + meta = oldAttrs.meta // { + broken = stdenv.isDarwin; + }; + configureFlags = [ "--disable-documentation" "--with-urwotf-dir=${ghostscript}/share/ghostscript/fonts" From 69f4b8cf99e448fcc3be981c2b93316eb6f4a7d1 Mon Sep 17 00:00:00 2001 From: Benjamin Esham Date: Sat, 1 Feb 2020 12:45:07 -0800 Subject: [PATCH 2/2] lilypond: mark not broken on Darwin --- pkgs/misc/lilypond/default.nix | 1 - 1 file changed, 1 deletion(-) diff --git a/pkgs/misc/lilypond/default.nix b/pkgs/misc/lilypond/default.nix index 7738c9b1c09..e9f8d6984af 100644 --- a/pkgs/misc/lilypond/default.nix +++ b/pkgs/misc/lilypond/default.nix @@ -61,7 +61,6 @@ stdenv.mkDerivation { license = licenses.gpl3; maintainers = with maintainers; [ marcweber yurrriq ]; platforms = platforms.all; - broken = stdenv.isDarwin; }; patches = [ ./findlib.patch ];