mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 15:56:50 +01:00
Merge pull request #82497 from bhipple/fix/lilypond-meta
lilypond: fix broken meta.homepage
This commit is contained in:
commit
16a3d75f5e
2 changed files with 2 additions and 4 deletions
|
@ -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;
|
||||
|
|
|
@ -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 ];
|
||||
|
|
Loading…
Reference in a new issue