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

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