mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 11:40:45 +00:00
742ba56e7b
* lilypond: add passthru.updateScript * lilypond: 2.22.2 -> 2.24.0 * lilypond-unstable: 2.23.12 -> 2.25.1
15 lines
415 B
Nix
15 lines
415 B
Nix
{ lib, fetchurl, lilypond }:
|
|
|
|
lilypond.overrideAttrs (oldAttrs: rec {
|
|
version = "2.25.1";
|
|
src = fetchurl {
|
|
url = "https://lilypond.org/download/sources/v${lib.versions.majorMinor version}/lilypond-${version}.tar.gz";
|
|
sha256 = "sha256-DchY+4+bWIvTZb4v9q/fAqStkbsxHhvty3eur0ZFYVs=";
|
|
};
|
|
|
|
passthru.updateScript = {
|
|
command = [ ./update.sh "unstable" ];
|
|
supportedFeatures = [ "commit" ];
|
|
};
|
|
})
|