Merge pull request #79040 from bdesham/allow-lilypond-on-darwin
lilypond: allow building on Darwin
This commit is contained in:
commit
9905f6daaa
@ -61,7 +61,6 @@ stdenv.mkDerivation {
|
||||
license = licenses.gpl3;
|
||||
maintainers = with maintainers; [ marcweber yurrriq ];
|
||||
platforms = platforms.all;
|
||||
broken = stdenv.isDarwin;
|
||||
};
|
||||
|
||||
patches = [ ./findlib.patch ];
|
||||
|
@ -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"
|
||||
|
Loading…
x
Reference in New Issue
Block a user