Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 97b775cfd299
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 92ce24853dc6
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Mar 15, 2019

  1. font-manager: no aliases

    worldofpeace committed Mar 15, 2019
    Copy the full SHA
    92ce248 View commit details
Showing with 7 additions and 7 deletions.
  1. +7 −7 pkgs/applications/misc/font-manager/default.nix
14 changes: 7 additions & 7 deletions pkgs/applications/misc/font-manager/default.nix
Original file line number Diff line number Diff line change
@@ -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 ];
};
}