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

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