mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
14 lines
414 B
Nix
14 lines
414 B
Nix
{ lib, fetchurl, lilypond }:
|
|
|
|
lilypond.overrideAttrs (oldAttrs: rec {
|
|
version = "2.25.19";
|
|
src = fetchurl {
|
|
url = "https://lilypond.org/download/sources/v${lib.versions.majorMinor version}/lilypond-${version}.tar.gz";
|
|
hash = "sha256-gGG4ObmY9PcO0JIKxAagquHS74Elc49SZ/8FDwFfZDU=";
|
|
};
|
|
|
|
passthru.updateScript = {
|
|
command = [ ./update.sh "unstable" ];
|
|
supportedFeatures = [ "commit" ];
|
|
};
|
|
})
|