lilypond-unstable and lilypond-unstable-with-fonts: init at 2.23.11
Co-authored-by: Sandro <sandro.jaeckel@gmail.com> Co-authored-by: Eric Bailey <eric@ericb.me>
This commit is contained in:
parent
6085a7ceee
commit
0b73b43a94
11
pkgs/misc/lilypond/unstable.nix
Normal file
11
pkgs/misc/lilypond/unstable.nix
Normal file
@ -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=";
|
||||
};
|
||||
})
|
@ -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
|
||||
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user