1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-18 10:50:13 -04:00
nixpkgs/pkgs/misc/lilypond/unstable.nix
2024-09-29 15:00:44 +00:00

15 lines
414 B
Nix

{ lib, fetchurl, lilypond }:
lilypond.overrideAttrs (oldAttrs: rec {
version = "2.25.20";
src = fetchurl {
url = "https://lilypond.org/download/sources/v${lib.versions.majorMinor version}/lilypond-${version}.tar.gz";
hash = "sha256-q+eVzm68m4FuAvWKB/Zys7stmT9arAQ/+J/q2AvLnbM=";
};
passthru.updateScript = {
command = [ ./update.sh "unstable" ];
supportedFeatures = [ "commit" ];
};
})