From 0b73b43a942d4f264036c74d03758194ba0b5855 Mon Sep 17 00:00:00 2001 From: usertam Date: Mon, 1 Aug 2022 03:14:24 +0800 Subject: [PATCH] lilypond-unstable and lilypond-unstable-with-fonts: init at 2.23.11 Co-authored-by: Sandro Co-authored-by: Eric Bailey --- pkgs/misc/lilypond/unstable.nix | 11 +++++++++++ pkgs/top-level/aliases.nix | 1 - pkgs/top-level/all-packages.nix | 9 +++++++++ 3 files changed, 20 insertions(+), 1 deletion(-) create mode 100644 pkgs/misc/lilypond/unstable.nix diff --git a/pkgs/misc/lilypond/unstable.nix b/pkgs/misc/lilypond/unstable.nix new file mode 100644 index 00000000000..dc137ccd7e9 --- /dev/null +++ b/pkgs/misc/lilypond/unstable.nix @@ -0,0 +1,11 @@ +{ lib, fetchurl, guile, lilypond }: + +(lilypond.override { + inherit guile; +}).overrideAttrs (oldAttrs: rec { + version = "2.23.11"; + src = fetchurl { + url = "https://lilypond.org/download/sources/v${lib.versions.majorMinor version}/lilypond-${version}.tar.gz"; + sha256 = "sha256-4VjcuZvRmpPmiZ42zyk9xYPlsSN6kEsBSRe30P+raQ8="; + }; +}) diff --git a/pkgs/top-level/aliases.nix b/pkgs/top-level/aliases.nix index a270cfe72c4..bd27f1db318 100644 --- a/pkgs/top-level/aliases.nix +++ b/pkgs/top-level/aliases.nix @@ -760,7 +760,6 @@ mapAliases ({ lightdm_gtk_greeter = lightdm-gtk-greeter; # Added 2022-08-01 lighthouse = throw "lighthouse has been removed: abandoned by upstream"; # Added 2022-04-24 lighttable = throw "'lighttable' crashes (SIGSEGV) on startup, has not been updated in years and depends on deprecated GTK2"; # Added 2022-06-15 - lilypond-unstable = lilypond; # Added 2021-03-11 lilyterm = throw "lilyterm has been removed from nixpkgs, because it was relying on a vte version that depended on python2"; # Added 2022-01-14 lilyterm-git = throw "lilyterm-git has been removed from nixpkgs, because it was relying on a vte version that depended on python2"; # Added 2022-01-14 links = throw "'links' has been renamed to/replaced by 'links2'"; # Converted to throw 2022-02-22 diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 350ccfaf020..70bfbece2ca 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -35172,6 +35172,15 @@ with pkgs; lilypond = callPackage ../misc/lilypond { guile = guile_1_8; }; + lilypond-unstable = callPackage ../misc/lilypond/unstable.nix { }; + + lilypond-unstable-with-fonts = callPackage ../misc/lilypond/with-fonts.nix { + lilypond = lilypond-unstable; + openlilylib-fonts = openlilylib-fonts.override { + lilypond = lilypond-unstable; + }; + }; + lilypond-with-fonts = callPackage ../misc/lilypond/with-fonts.nix { }; openlilylib-fonts = callPackage ../misc/lilypond/fonts.nix { };