Merge pull request #82497 from bhipple/fix/lilypond-meta

lilypond: fix broken meta.homepage
This commit is contained in:
Ryan Mulligan 2020-03-13 08:58:50 -07:00 committed by GitHub
commit 16a3d75f5e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 4 deletions

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;

View file

@ -7,7 +7,6 @@ let
inherit version;
pname = "openlilypond-font-${fontName}";
src = fetchFromGitHub {
inherit rev sha256;
owner = "OpenLilyPondFonts";
@ -31,8 +30,7 @@ let
'';
meta = with stdenv.lib; {
inherit (src.meta) homepage;
inherit (lilypond.meta) platforms;
inherit (lilypond.meta) homepage platforms;
description = "${fontName} font for LilyPond";
license = licenses.ofl;
maintainers = with maintainers; [ yurrriq ];