2020-01-12 23:35:08 +00:00
|
|
|
{ stdenv, fetchFromGitHub, meson, ninja, gettext, python3,
|
2019-11-20 03:30:05 +00:00
|
|
|
pkgconfig, libxml2, json-glib , sqlite, itstool, librsvg, yelp-tools,
|
2019-03-15 10:31:52 +00:00
|
|
|
vala, gtk3, gnome3, desktop-file-utils, wrapGAppsHook, gobject-introspection
|
2016-03-04 09:43:11 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-01-19 18:51:21 +00:00
|
|
|
pname = "font-manager";
|
2020-01-12 23:31:07 +00:00
|
|
|
version = "0.7.7";
|
2016-03-04 09:43:11 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2018-08-30 00:20:59 +01:00
|
|
|
owner = "FontManager";
|
|
|
|
repo = "master";
|
2019-04-28 01:54:53 +01:00
|
|
|
rev = version;
|
2020-01-12 23:31:07 +00:00
|
|
|
sha256 = "1bzqvspplp1zj0n0869jqbc60wgbjhf0vdrn5bj8dfawxynh8s5f";
|
2019-01-18 14:32:33 +00:00
|
|
|
};
|
2016-03-04 09:43:11 +00:00
|
|
|
|
2016-06-12 12:00:31 +01:00
|
|
|
nativeBuildInputs = [
|
2016-03-04 09:43:11 +00:00
|
|
|
pkgconfig
|
2019-01-19 18:51:21 +00:00
|
|
|
meson
|
|
|
|
ninja
|
|
|
|
gettext
|
|
|
|
python3
|
2018-08-30 00:20:59 +01:00
|
|
|
itstool
|
2019-01-19 18:51:21 +00:00
|
|
|
desktop-file-utils
|
2018-08-30 00:20:59 +01:00
|
|
|
vala
|
2019-11-20 03:30:05 +00:00
|
|
|
yelp-tools
|
2016-06-12 12:00:31 +01:00
|
|
|
wrapGAppsHook
|
2019-03-15 10:31:52 +00:00
|
|
|
# For https://github.com/FontManager/master/blob/master/lib/unicode/meson.build
|
2018-12-02 11:41:15 +00:00
|
|
|
gobject-introspection
|
2016-06-12 12:00:31 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
2016-03-04 09:43:11 +00:00
|
|
|
libxml2
|
2018-02-25 02:23:58 +00:00
|
|
|
json-glib
|
2016-03-04 09:43:11 +00:00
|
|
|
sqlite
|
2016-10-22 15:59:10 +01:00
|
|
|
librsvg
|
2019-03-15 10:31:52 +00:00
|
|
|
gtk3
|
2019-02-13 21:47:50 +00:00
|
|
|
gnome3.adwaita-icon-theme
|
2016-03-04 09:43:11 +00:00
|
|
|
];
|
|
|
|
|
2019-01-19 18:51:21 +00:00
|
|
|
postPatch = ''
|
|
|
|
chmod +x meson_post_install.py
|
|
|
|
patchShebangs meson_post_install.py
|
|
|
|
'';
|
|
|
|
|
2019-03-15 10:31:52 +00:00
|
|
|
meta = with stdenv.lib; {
|
2016-03-04 09:43:11 +00:00
|
|
|
homepage = https://fontmanager.github.io/;
|
2019-09-03 23:49:40 +01:00
|
|
|
description = "Simple font management for GTK desktop environments";
|
2016-03-04 09:43:11 +00: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
|
2019-09-03 23:49:40 +01:00
|
|
|
work well with other GTK desktop environments.
|
2016-03-04 09:43:11 +00:00
|
|
|
|
|
|
|
Font Manager is NOT a professional-grade font management solution.
|
|
|
|
'';
|
2019-03-15 10:31:52 +00:00
|
|
|
license = licenses.gpl3;
|
|
|
|
platforms = platforms.unix;
|
|
|
|
maintainers = [ maintainers.romildo ];
|
2016-03-04 09:43:11 +00:00
|
|
|
};
|
|
|
|
}
|