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

69 lines
1.7 KiB
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, automake, autoconf, libtool,
2019-01-18 14:32:33 +00:00
pkgconfig, file, libxml2, json-glib , sqlite, itstool,
librsvg, vala, gnome3, wrapGAppsHook, gobject-introspection,
which
2016-03-04 09:43:11 +00:00
}:
stdenv.mkDerivation rec {
name = "font-manager-${version}";
2019-01-18 14:32:33 +00:00
version = "0.7.4.1";
2016-03-04 09:43:11 +00:00
src = fetchFromGitHub {
owner = "FontManager";
repo = "master";
rev = version;
2019-01-18 14:32:33 +00:00
sha256 = "1zy419zzc95h4gxvl88acqjbwlnmwybj23rx3vkc62j3v3w4nlay";
};
2016-03-04 09:43:11 +00:00
nativeBuildInputs = [
2016-03-04 09:43:11 +00:00
pkgconfig
automake autoconf libtool
file
2019-01-18 14:32:33 +00:00
which
itstool
vala
gnome3.yelp-tools
wrapGAppsHook
# For setup hook
gobject-introspection
];
buildInputs = [
2016-03-04 09:43:11 +00:00
libxml2
json-glib
2016-03-04 09:43:11 +00:00
sqlite
2016-10-22 14:59:10 +00:00
librsvg
2016-03-04 09:43:11 +00:00
gnome3.gtk
gnome3.defaultIconTheme
2016-03-04 09:43:11 +00:00
];
enableParallelBuilding = true;
2016-03-04 09:43:11 +00:00
preConfigure = ''
NOCONFIGURE=true ./autogen.sh
substituteInPlace configure --replace "/usr/bin/file" "${file}/bin/file"
'';
configureFlags = [
"--disable-pycompile"
];
2016-03-04 09:43:11 +00:00
meta = {
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.
'';
license = stdenv.lib.licenses.gpl3;
repositories.git = https://github.com/FontManager/master;
platforms = stdenv.lib.platforms.unix;
maintainers = [ stdenv.lib.maintainers.romildo ];
2016-03-04 09:43:11 +00:00
};
}