nixpkgs/pkgs/applications/misc/font-manager/default.nix

63 lines
1.6 KiB
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, meson, ninja, gettext, python3,
2019-11-20 04:30:05 +01:00
pkgconfig, libxml2, json-glib , sqlite, itstool, librsvg, yelp-tools,
2019-03-15 11:31:52 +01:00
vala, gtk3, gnome3, desktop-file-utils, wrapGAppsHook, gobject-introspection
2016-03-04 10:43:11 +01:00
}:
stdenv.mkDerivation rec {
2019-01-19 19:51:21 +01:00
pname = "font-manager";
2020-11-15 06:00:35 +01:00
version = "0.7.9";
2016-03-04 10:43:11 +01:00
src = fetchFromGitHub {
owner = "FontManager";
repo = "master";
rev = version;
2020-11-15 06:00:35 +01:00
sha256 = "1nc0i824v2szz0j9a5rwl8gygih15xbxnxpnx9d3wr0yq9057q6q";
2019-01-18 15:32:33 +01:00
};
2016-03-04 10:43:11 +01:00
nativeBuildInputs = [
2016-03-04 10:43:11 +01:00
pkgconfig
2019-01-19 19:51:21 +01:00
meson
ninja
gettext
python3
itstool
2019-01-19 19:51:21 +01:00
desktop-file-utils
vala
2019-11-20 04:30:05 +01:00
yelp-tools
wrapGAppsHook
2019-03-15 11:31:52 +01:00
# For https://github.com/FontManager/master/blob/master/lib/unicode/meson.build
gobject-introspection
];
buildInputs = [
2016-03-04 10:43:11 +01:00
libxml2
json-glib
2016-03-04 10:43:11 +01:00
sqlite
2016-10-22 16:59:10 +02:00
librsvg
2019-03-15 11:31:52 +01:00
gtk3
2019-02-13 22:47:50 +01:00
gnome3.adwaita-icon-theme
2016-03-04 10:43:11 +01:00
];
2019-01-19 19:51:21 +01:00
postPatch = ''
chmod +x meson_post_install.py
patchShebangs meson_post_install.py
'';
2019-03-15 11:31:52 +01:00
meta = with stdenv.lib; {
homepage = "https://fontmanager.github.io/";
description = "Simple font management for GTK desktop environments";
2016-03-04 10:43:11 +01:00
longDescription = ''
Font Manager is intended to provide a way for average users to
easily manage desktop fonts, without having to resort to command
line tools or editing configuration files by hand. While designed
primarily with the Gnome Desktop Environment in mind, it should
work well with other GTK desktop environments.
2016-03-04 10:43:11 +01:00
Font Manager is NOT a professional-grade font management solution.
'';
2019-03-15 11:31:52 +01:00
license = licenses.gpl3;
platforms = platforms.unix;
maintainers = [ maintainers.romildo ];
2016-03-04 10:43:11 +01:00
};
}