summary refs log tree commit diff
path: root/pkgs/applications/misc/font-manager
diff options
context:
space:
mode:
authorworldofpeace <worldofpeace@users.noreply.github.com>2019-03-15 06:31:52 -0400
committerworldofpeace <worldofpeace@users.noreply.github.com>2019-03-15 06:31:52 -0400
commit92ce24853dc64c25cb1a45c5b2b37da5b1342eab (patch)
tree98a36bb2982743a7fc752f723cd3ce9c3538a1e6 /pkgs/applications/misc/font-manager
parent97b775cfd29930d0f276c24cb960995b8a995039 (diff)
downloadnixpkgs-92ce24853dc64c25cb1a45c5b2b37da5b1342eab.tar
nixpkgs-92ce24853dc64c25cb1a45c5b2b37da5b1342eab.tar.gz
nixpkgs-92ce24853dc64c25cb1a45c5b2b37da5b1342eab.tar.bz2
nixpkgs-92ce24853dc64c25cb1a45c5b2b37da5b1342eab.tar.lz
nixpkgs-92ce24853dc64c25cb1a45c5b2b37da5b1342eab.tar.xz
nixpkgs-92ce24853dc64c25cb1a45c5b2b37da5b1342eab.tar.zst
nixpkgs-92ce24853dc64c25cb1a45c5b2b37da5b1342eab.zip
font-manager: no aliases
Diffstat (limited to 'pkgs/applications/misc/font-manager')
-rw-r--r--pkgs/applications/misc/font-manager/default.nix14
1 files changed, 7 insertions, 7 deletions
diff --git a/pkgs/applications/misc/font-manager/default.nix b/pkgs/applications/misc/font-manager/default.nix
index ecfafc77ab5..2ffa784360f 100644
--- a/pkgs/applications/misc/font-manager/default.nix
+++ b/pkgs/applications/misc/font-manager/default.nix
@@ -1,6 +1,6 @@
 { stdenv, fetchFromGitHub, meson, ninja, gettext, python3,
   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 {
@@ -25,7 +25,7 @@ stdenv.mkDerivation rec {
     vala
     gnome3.yelp-tools
     wrapGAppsHook
-    # For setup hook
+    # For https://github.com/FontManager/master/blob/master/lib/unicode/meson.build
     gobject-introspection
   ];
 
@@ -34,7 +34,7 @@ stdenv.mkDerivation rec {
     json-glib
     sqlite
     librsvg
-    gnome3.gtk
+    gtk3
     gnome3.adwaita-icon-theme
   ];
 
@@ -49,7 +49,7 @@ stdenv.mkDerivation rec {
     patchShebangs meson_post_install.py
   '';
 
-  meta = {
+  meta = with stdenv.lib; {
     homepage = https://fontmanager.github.io/;
     description = "Simple font management for GTK+ desktop environments";
     longDescription = ''
@@ -61,9 +61,9 @@ stdenv.mkDerivation rec {
 
       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;
-    platforms = stdenv.lib.platforms.unix;
-    maintainers = [ stdenv.lib.maintainers.romildo ];
+    platforms = platforms.unix;
+    maintainers = [ maintainers.romildo ];
   };
 }