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
commit 9905f6daaa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 2 deletions

View File

@ -61,7 +61,6 @@ stdenv.mkDerivation {
license = licenses.gpl3;
maintainers = with maintainers; [ marcweber yurrriq ];
platforms = platforms.all;
broken = stdenv.isDarwin;
};
patches = [ ./findlib.patch ];

View File

@ -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"