core/pkgs/by-name/li/lilypond/unstable.nix

17 lines
430 B
Nix
Raw Normal View History

2024-05-02 00:46:19 +00:00
{ lib, fetchurl, lilypond }:
lilypond.overrideAttrs (oldAttrs: rec {
version = "2.25.14";
src = fetchurl {
2024-05-13 21:24:10 +00:00
url = "https://lilypond.org/download/sources/v${
lib.versions.majorMinor version
}/lilypond-${version}.tar.gz";
2024-05-02 00:46:19 +00:00
hash = "sha256-b0qfNjr5jxEJbCYINX2/JhESMOIf9DefRHI47gn5Zio=";
};
passthru.updateScript = {
command = [ ./update.sh "unstable" ];
supportedFeatures = [ "commit" ];
};
})