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