summary refs log tree commit diff
path: root/pkgs/misc/lilypond
diff options
context:
space:
mode:
authorSandro Jäckel <sandro.jaeckel@gmail.com>2021-03-11 23:54:44 +0100
committerSandro Jäckel <sandro.jaeckel@gmail.com>2021-03-11 23:56:33 +0100
commit389c7cf0a82de3a6de9d1832a4d99fa66d16d91d (patch)
tree948fa6f9bd4b934b6e241aba2770809a79446e62 /pkgs/misc/lilypond
parent5691cf42cc9b58ff48db03b5404c0077655fc677 (diff)
lilypond-unstable: drop because lilypond is newer and it does not build
Diffstat (limited to 'pkgs/misc/lilypond')
-rw-r--r--pkgs/misc/lilypond/unstable.nix21
1 files changed, 0 insertions, 21 deletions
diff --git a/pkgs/misc/lilypond/unstable.nix b/pkgs/misc/lilypond/unstable.nix
deleted file mode 100644
index 68f48a2db64f7..0000000000000
--- a/pkgs/misc/lilypond/unstable.nix
+++ /dev/null
@@ -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;
-  };
-})