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

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