13da32182d
GitOrigin-RevId: a7855f2235a1876f97473a76151fec2afa02b287
11 lines
341 B
Nix
11 lines
341 B
Nix
{ lib, fetchurl, guile, lilypond }:
|
|
|
|
(lilypond.override {
|
|
inherit guile;
|
|
}).overrideAttrs (oldAttrs: rec {
|
|
version = "2.23.11";
|
|
src = fetchurl {
|
|
url = "https://lilypond.org/download/sources/v${lib.versions.majorMinor version}/lilypond-${version}.tar.gz";
|
|
sha256 = "sha256-4VjcuZvRmpPmiZ42zyk9xYPlsSN6kEsBSRe30P+raQ8=";
|
|
};
|
|
})
|