about summary refs log tree commit diff
path: root/pkgs/misc/lilypond/unstable.nix
blob: f500a7971315a6a26ee127abbc61053bf33d33f9 (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.14";
  src = fetchurl {
    url = "https://lilypond.org/download/sources/v${lib.versions.majorMinor version}/lilypond-${version}.tar.gz";
    hash = "sha256-b0qfNjr5jxEJbCYINX2/JhESMOIf9DefRHI47gn5Zio=";
  };

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