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
414 B
Nix
Raw Permalink Normal View History

{ lib, fetchurl, lilypond }:
lilypond.overrideAttrs (oldAttrs: rec {
2024-09-29 15:00:44 +00:00
version = "2.25.20";
src = fetchurl {
url = "https://lilypond.org/download/sources/v${lib.versions.majorMinor version}/lilypond-${version}.tar.gz";
2024-09-29 15:00:44 +00:00
hash = "sha256-q+eVzm68m4FuAvWKB/Zys7stmT9arAQ/+J/q2AvLnbM=";
};
passthru.updateScript = {
command = [ ./update.sh "unstable" ];
supportedFeatures = [ "commit" ];
};
})