nixpkgs/pkgs/misc/lilypond/unstable.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
413 B
Nix
Raw Normal View History

{ lib, fetchurl, lilypond }:
lilypond.overrideAttrs (oldAttrs: rec {
2023-10-11 00:26:31 +00:00
version = "2.25.9";
src = fetchurl {
url = "https://lilypond.org/download/sources/v${lib.versions.majorMinor version}/lilypond-${version}.tar.gz";
2023-10-11 00:26:31 +00:00
hash = "sha256-ncsmHeCcnAtfrzDOcyHgfmsHGrUJ70zqFQLl+97tgpM=";
};
passthru.updateScript = {
command = [ ./update.sh "unstable" ];
supportedFeatures = [ "commit" ];
};
})