c7e6337bd0
GitOrigin-RevId: 08e4dc3a907a6dfec8bb3bbf1540d8abbffea22b
14 lines
415 B
Nix
14 lines
415 B
Nix
{ lib, fetchurl, lilypond }:
|
|
|
|
lilypond.overrideAttrs (oldAttrs: rec {
|
|
version = "2.25.3";
|
|
src = fetchurl {
|
|
url = "https://lilypond.org/download/sources/v${lib.versions.majorMinor version}/lilypond-${version}.tar.gz";
|
|
sha256 = "sha256-CVMMzL31NWd6PKf66m0ctBXFpqHMwxQibuifaU9lftg=";
|
|
};
|
|
|
|
passthru.updateScript = {
|
|
command = [ ./update.sh "unstable" ];
|
|
supportedFeatures = [ "commit" ];
|
|
};
|
|
})
|