nixpkgs/pkgs/misc/lilypond/unstable.nix
usertam 0b73b43a94 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>
2022-08-16 16:27:21 -05:00

12 lines
341 B
Nix

{ 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=";
};
})