font-manager: no aliases

This commit is contained in:
worldofpeace 2019-03-15 06:31:52 -04:00
parent 97b775cfd2
commit 92ce24853d

View File

@ -1,6 +1,6 @@
{ stdenv, fetchFromGitHub, meson, ninja, gettext, python3, { stdenv, fetchFromGitHub, meson, ninja, gettext, python3,
pkgconfig, libxml2, json-glib , sqlite, itstool, librsvg, pkgconfig, libxml2, json-glib , sqlite, itstool, librsvg,
vala, gnome3, desktop-file-utils, wrapGAppsHook, gobject-introspection vala, gtk3, gnome3, desktop-file-utils, wrapGAppsHook, gobject-introspection
}: }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
@ -25,7 +25,7 @@ stdenv.mkDerivation rec {
vala vala
gnome3.yelp-tools gnome3.yelp-tools
wrapGAppsHook wrapGAppsHook
# For setup hook # For https://github.com/FontManager/master/blob/master/lib/unicode/meson.build
gobject-introspection gobject-introspection
]; ];
@ -34,7 +34,7 @@ stdenv.mkDerivation rec {
json-glib json-glib
sqlite sqlite
librsvg librsvg
gnome3.gtk gtk3
gnome3.adwaita-icon-theme gnome3.adwaita-icon-theme
]; ];
@ -49,7 +49,7 @@ stdenv.mkDerivation rec {
patchShebangs meson_post_install.py patchShebangs meson_post_install.py
''; '';
meta = { meta = with stdenv.lib; {
homepage = https://fontmanager.github.io/; homepage = https://fontmanager.github.io/;
description = "Simple font management for GTK+ desktop environments"; description = "Simple font management for GTK+ desktop environments";
longDescription = '' longDescription = ''
@ -61,9 +61,9 @@ stdenv.mkDerivation rec {
Font Manager is NOT a professional-grade font management solution. Font Manager is NOT a professional-grade font management solution.
''; '';
license = stdenv.lib.licenses.gpl3; license = licenses.gpl3;
repositories.git = https://github.com/FontManager/master; repositories.git = https://github.com/FontManager/master;
platforms = stdenv.lib.platforms.unix; platforms = platforms.unix;
maintainers = [ stdenv.lib.maintainers.romildo ]; maintainers = [ maintainers.romildo ];
}; };
} }