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 Normal View History

{ lib, fetchurl, lilypond }:
lilypond.overrideAttrs (oldAttrs: rec {
2024-06-20 08:44:46 +01:00
version = "2.25.17";
src = fetchurl {
url = "https://lilypond.org/download/sources/v${lib.versions.majorMinor version}/lilypond-${version}.tar.gz";
2024-06-20 08:44:46 +01:00
hash = "sha256-AVGd/H2+lQxUYyXGB2dOBU4rpqR5LSkn3ishu5uqDYs=";
};
passthru.updateScript = {
command = [ ./update.sh "unstable" ];
supportedFeatures = [ "commit" ];
};
})