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

22 lines
437 B
Nix
Raw Normal View History

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