nixpkgs/pkgs/misc/lilypond/unstable.nix

15 lines
415 B
Nix
Raw Normal View History

{ lib, fetchurl, lilypond }:
lilypond.overrideAttrs (oldAttrs: rec {
2023-09-05 14:20:58 +00:00
version = "2.25.7";
src = fetchurl {
url = "https://lilypond.org/download/sources/v${lib.versions.majorMinor version}/lilypond-${version}.tar.gz";
2023-09-05 14:20:58 +00:00
sha256 = "sha256-b7prbe4lnUfiLGcmWbrjXTTXqJTX4PsAMBbSvZgHLwI=";
};
passthru.updateScript = {
command = [ ./update.sh "unstable" ];
supportedFeatures = [ "commit" ];
};
})