Merge pull request #79040 from bdesham/allow-lilypond-on-darwin

lilypond: allow building on Darwin
This commit is contained in:
Dmitry Kalinkin
2020-02-02 17:15:01 -05:00
committed by GitHub
2 changed files with 5 additions and 2 deletions
-1
View File
@@ -61,7 +61,6 @@ stdenv.mkDerivation {
license = licenses.gpl3; license = licenses.gpl3;
maintainers = with maintainers; [ marcweber yurrriq ]; maintainers = with maintainers; [ marcweber yurrriq ];
platforms = platforms.all; platforms = platforms.all;
broken = stdenv.isDarwin;
}; };
patches = [ ./findlib.patch ]; patches = [ ./findlib.patch ];
+5 -1
View File
@@ -1,4 +1,4 @@
{ fetchgit, lilypond, ghostscript, gyre-fonts }: { stdenv, fetchgit, lilypond, ghostscript, gyre-fonts }:
let let
@@ -15,6 +15,10 @@ lilypond.overrideAttrs (oldAttrs: {
sha256 = "1ycyx9x76d79jh7wlwyyhdjkyrwnhzqpw006xn2fk35s0jrm2iz0"; sha256 = "1ycyx9x76d79jh7wlwyyhdjkyrwnhzqpw006xn2fk35s0jrm2iz0";
}; };
meta = oldAttrs.meta // {
broken = stdenv.isDarwin;
};
configureFlags = [ configureFlags = [
"--disable-documentation" "--disable-documentation"
"--with-urwotf-dir=${ghostscript}/share/ghostscript/fonts" "--with-urwotf-dir=${ghostscript}/share/ghostscript/fonts"