22 lines
437 B
Nix
22 lines
437 B
Nix
|
{
|
||
|
lib,
|
||
|
fetchurl,
|
||
|
lilypond,
|
||
|
}:
|
||
|
|
||
|
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 = {
|
||
|
command = [
|
||
|
./update.sh
|
||
|
"unstable"
|
||
|
];
|
||
|
supportedFeatures = [ "commit" ];
|
||
|
};
|
||
|
})
|