lilypond-unstable: drop because lilypond is newer and it does not build

This commit is contained in:
Sandro Jäckel
2021-03-11 23:56:33 +01:00
parent 5691cf42cc
commit 389c7cf0a8
3 changed files with 1 additions and 23 deletions
-21
View File
@@ -1,21 +0,0 @@
{ stdenv, fetchgit, lilypond, ghostscript, gyre-fonts }:
let
version = "2.19.83";
in
lilypond.overrideAttrs (oldAttrs: {
inherit version;
src = fetchgit {
url = "https://git.savannah.gnu.org/r/lilypond.git";
rev = "release/${version}-1";
sha256 = "1ycyx9x76d79jh7wlwyyhdjkyrwnhzqpw006xn2fk35s0jrm2iz0";
};
meta = oldAttrs.meta // {
broken = stdenv.isDarwin;
};
})