2019-04-11 05:32:21 +00:00
|
|
|
{ stdenv, fetchFromGitHub, meson, ninja, gettext, python3, fetchpatch,
|
2019-01-19 18:51:21 +00:00
|
|
|
pkgconfig, libxml2, json-glib , sqlite, itstool, librsvg,
|
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";
|
2019-04-11 05:32:21 +00:00
|
|
|
version = "0.7.5";
|
2016-03-04 09:43:11 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2018-08-29 23:20:59 +00:00
|
|
|
owner = "FontManager";
|
|
|
|
repo = "master";
|
2019-04-11 05:32:21 +00:00
|
|
|
rev = "cc057f3e93f5b1033b04decee03cdb44177e48b3";
|
|
|
|
sha256 = "1xg80bi2465p5r8zfmb34iga9yqs3is1k4f13hw0ligvhb58gas0";
|
2019-01-18 14:32:33 +00:00
|
|
|
};
|
2016-03-04 09:43:11 +00:00
|
|
|
|
2016-06-12 11:00:31 +00: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-29 23:20:59 +00:00
|
|
|
itstool
|
2019-01-19 18:51:21 +00:00
|
|
|
desktop-file-utils
|
2018-08-29 23:20:59 +00:00
|
|
|
vala
|
2018-02-25 02:23:58 +00:00
|
|
|
gnome3.yelp-tools
|
2016-06-12 11:00:31 +00: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 11:00:31 +00: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 14:59:10 +00: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-04-11 05:32:21 +00:00
|
|
|
patches = [
|
|
|
|
./correct-post-install.patch
|
|
|
|
];
|
2016-06-12 11:00:31 +00:00
|
|
|
|
2019-01-19 18:51:21 +00:00
|
|
|
mesonFlags = [
|
|
|
|
"-Ddisable_pycompile=true"
|
2018-08-29 23:20:59 +00:00
|
|
|
];
|
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/;
|
|
|
|
description = "Simple font management for GTK+ desktop environments";
|
|
|
|
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.
|
|
|
|
|
|
|
|
Font Manager is NOT a professional-grade font management solution.
|
|
|
|
'';
|
2019-03-15 10:31:52 +00:00
|
|
|
license = licenses.gpl3;
|
2016-03-04 09:43:11 +00:00
|
|
|
repositories.git = https://github.com/FontManager/master;
|
2019-03-15 10:31:52 +00:00
|
|
|
platforms = platforms.unix;
|
|
|
|
maintainers = [ maintainers.romildo ];
|
2016-03-04 09:43:11 +00:00
|
|
|
};
|
|
|
|
}
|