about summary refs log tree commit diff
path: root/pkgs/misc/lilypond/unstable.nix
blob: 74f9932794939a299a389641786e77ad233e6f8b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ lib, fetchurl, lilypond }:

lilypond.overrideAttrs (oldAttrs: rec {
  version = "2.25.17";
  src = fetchurl {
    url = "https://lilypond.org/download/sources/v${lib.versions.majorMinor version}/lilypond-${version}.tar.gz";
    hash = "sha256-AVGd/H2+lQxUYyXGB2dOBU4rpqR5LSkn3ishu5uqDYs=";
  };

  passthru.updateScript = {
    command = [ ./update.sh "unstable" ];
    supportedFeatures = [ "commit" ];
  };
})