lilypond: fix broken meta.homepage

The `src.meta` attribute does not exist, and even if it did the derivation does
not have a `rec` to reference it. This appears to be breaking all ofBorg meta
evaluation checks:

```
while evaluating the attribute 'homepage' at /var/lib/ofborg/checkout/repo/38dca4e3aa6bca43ea96d2fcc04e8229/mr-est/eval-0-gleber.ewr1.nix.ci/pkgs/misc/lilypond/fonts.nix:34:27:
undefined variable 'src' at /var/lib/ofborg/checkout/repo/38dca4e3aa6bca43ea96d2fcc04e8229/mr-est/eval-0-gleber.ewr1.nix.ci/pkgs/misc/lilypond/fonts.nix:34:18
```
https://gist.github.com/GrahamcOfBorg/cd87009bfee1a9c0d4f0d828b82ee09a
This commit is contained in:
Benjamin Hipple
2020-03-13 11:55:35 -04:00
parent b0d9764c72
commit f167ba637d
2 changed files with 2 additions and 4 deletions
+1 -1
View File
@@ -57,7 +57,7 @@ stdenv.mkDerivation {
meta = with stdenv.lib; {
description = "Music typesetting system";
homepage = http://lilypond.org/;
homepage = "http://lilypond.org/";
license = licenses.gpl3;
maintainers = with maintainers; [ marcweber yurrriq ];
platforms = platforms.all;