mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
Merge pull request #16165 from romildo/upd.fontmanager
font-manager: git-2016-03-02 -> 2016-06-04
This commit is contained in:
commit
d353301b32
2 changed files with 15 additions and 18 deletions
|
@ -1,39 +1,43 @@
|
|||
{ stdenv, fetchFromGitHub, makeWrapper, automake, autoconf, libtool,
|
||||
pkgconfig, file, intltool, libxml2, json_glib , sqlite, itstool,
|
||||
vala, gnome3
|
||||
vala, gnome3, wrapGAppsHook
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "font-manager-${version}";
|
||||
version = "git-2016-03-02";
|
||||
version = "2016-06-04";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "FontManager";
|
||||
repo = "master";
|
||||
rev = "743fb83558c86bfbbec898106072f84422c175d6";
|
||||
sha256 = "1sakss6irfr3d8k39x1rf72fmnpq47akhyrv3g45a3l6v6xfqp3k";
|
||||
rev = "07b47c153494f19ced291c84437349253c5bde4d";
|
||||
sha256 = "13pjmvx31fr8fqhl5qwawhawfl7as9c50qshzzig8n5g7vb5v1i0";
|
||||
};
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
buildInputs = [
|
||||
nativeBuildInputs = [
|
||||
makeWrapper
|
||||
pkgconfig
|
||||
automake autoconf libtool
|
||||
file
|
||||
intltool
|
||||
vala
|
||||
gnome3.yelp_tools
|
||||
wrapGAppsHook
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
libxml2
|
||||
json_glib
|
||||
sqlite
|
||||
itstool
|
||||
vala
|
||||
gnome3.gtk
|
||||
gnome3.gucharmap
|
||||
gnome3.libgee
|
||||
gnome3.file-roller
|
||||
gnome3.yelp_tools
|
||||
];
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
preConfigure = ''
|
||||
NOCONFIGURE=true ./autogen.sh
|
||||
chmod +x configure;
|
||||
|
@ -42,13 +46,6 @@ stdenv.mkDerivation rec {
|
|||
|
||||
configureFlags = "--disable-pycompile";
|
||||
|
||||
preFixup = ''
|
||||
for prog in "$out/bin/"* "$out/libexec/font-manager/"*; do
|
||||
wrapProgram "$prog" \
|
||||
--prefix XDG_DATA_DIRS : "$out/share:$GSETTINGS_SCHEMAS_PATH"
|
||||
done
|
||||
'';
|
||||
|
||||
meta = {
|
||||
homepage = https://fontmanager.github.io/;
|
||||
description = "Simple font management for GTK+ desktop environments";
|
||||
|
@ -62,8 +59,8 @@ stdenv.mkDerivation rec {
|
|||
Font Manager is NOT a professional-grade font management solution.
|
||||
'';
|
||||
license = stdenv.lib.licenses.gpl3;
|
||||
maintainers = [ stdenv.lib.maintainers.romildo ];
|
||||
repositories.git = https://github.com/FontManager/master;
|
||||
platforms = stdenv.lib.platforms.unix;
|
||||
maintainers = [ stdenv.lib.maintainers.romildo ];
|
||||
};
|
||||
}
|
||||
|
|
|
@ -12594,7 +12594,7 @@ in
|
|||
focuswriter = callPackage ../applications/editors/focuswriter { };
|
||||
|
||||
font-manager = callPackage ../applications/misc/font-manager {
|
||||
vala = vala_0_28;
|
||||
vala = vala_0_32;
|
||||
};
|
||||
|
||||
foo-yc20 = callPackage ../applications/audio/foo-yc20 { };
|
||||
|
|
Loading…
Reference in a new issue