0b73b43a94
Co-authored-by: Sandro <sandro.jaeckel@gmail.com> Co-authored-by: Eric Bailey <eric@ericb.me>
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=";
|
|
};
|
|
})
|