pytrainer: unpin python 3.10
[NixPkgs.git] / pkgs / misc / lilypond / unstable.nix
blob6bc279fb5853db54c3674838731e6c0d234dbe5c
1 { lib, fetchurl, lilypond }:
3 lilypond.overrideAttrs (oldAttrs: rec {
4   version = "2.25.20";
5   src = fetchurl {
6     url = "https://lilypond.org/download/sources/v${lib.versions.majorMinor version}/lilypond-${version}.tar.gz";
7     hash = "sha256-q+eVzm68m4FuAvWKB/Zys7stmT9arAQ/+J/q2AvLnbM=";
8   };
10   passthru.updateScript = {
11     command = [ ./update.sh "unstable" ];
12     supportedFeatures = [ "commit" ];
13   };