fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
14 lines
414 B
Nix
14 lines
414 B
Nix
{ lib, fetchurl, lilypond }:
|
|
|
|
lilypond.overrideAttrs (oldAttrs: rec {
|
|
version = "2.25.16";
|
|
src = fetchurl {
|
|
url = "https://lilypond.org/download/sources/v${lib.versions.majorMinor version}/lilypond-${version}.tar.gz";
|
|
hash = "sha256-AY8NfcZsD+JD45Ua1c9UHeQXqWSOqxqAQPWqqrRDLhY=";
|
|
};
|
|
|
|
passthru.updateScript = {
|
|
command = [ ./update.sh "unstable" ];
|
|
supportedFeatures = [ "commit" ];
|
|
};
|
|
})
|