Merge pull request #133606 from SuperSandro2000/fontforge
This commit is contained in:
commit
a2a283877c
1 changed files with 7 additions and 7 deletions
|
@ -7,7 +7,7 @@
|
||||||
, withGUI ? withGTK
|
, withGUI ? withGTK
|
||||||
, withPython ? true
|
, withPython ? true
|
||||||
, withExtras ? true
|
, withExtras ? true
|
||||||
, Carbon ? null, Cocoa ? null
|
, Carbon, Cocoa
|
||||||
}:
|
}:
|
||||||
|
|
||||||
assert withGTK -> withGUI;
|
assert withGTK -> withGUI;
|
||||||
|
@ -49,7 +49,7 @@ stdenv.mkDerivation rec {
|
||||||
readline uthash woff2 zeromq libuninameslist
|
readline uthash woff2 zeromq libuninameslist
|
||||||
python freetype zlib glib giflib libpng libjpeg libtiff libxml2
|
python freetype zlib glib giflib libpng libjpeg libtiff libxml2
|
||||||
]
|
]
|
||||||
++ lib.optionals withSpiro [libspiro]
|
++ lib.optionals withSpiro [ libspiro ]
|
||||||
++ lib.optionals withGUI [ gtk3 cairo pango ]
|
++ lib.optionals withGUI [ gtk3 cairo pango ]
|
||||||
++ lib.optionals stdenv.isDarwin [ Carbon Cocoa ];
|
++ lib.optionals stdenv.isDarwin [ Carbon Cocoa ];
|
||||||
|
|
||||||
|
@ -71,11 +71,11 @@ stdenv.mkDerivation rec {
|
||||||
rm -r "$out/share/fontforge/python"
|
rm -r "$out/share/fontforge/python"
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = {
|
meta = with lib; {
|
||||||
description = "A font editor";
|
description = "A font editor";
|
||||||
homepage = "http://fontforge.github.io";
|
homepage = "https://fontforge.github.io";
|
||||||
platforms = lib.platforms.all;
|
platforms = platforms.all;
|
||||||
license = lib.licenses.bsd3;
|
license = licenses.bsd3;
|
||||||
maintainers = [ lib.maintainers.erictapen ];
|
maintainers = [ maintainers.erictapen ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue