67 lines
2.3 KiB
Nix
67 lines
2.3 KiB
Nix
{ fetchurl, stdenv, pkgconfig, intltool, perl, perlXMLParser, libxml2
|
|
, glib, gtk3, pango, atk, gdk_pixbuf, shared_mime_info
|
|
, itstool, gnome_icon_theme, libgnome_keyring, gsettings_desktop_schemas
|
|
, poppler, ghostscriptX, djvulibre, libspectre, libsecret
|
|
, makeWrapper #, python /*just for tests*/
|
|
, recentListSize ? null # 5 is not enough, allow passing a different number
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "evince-3.11.1";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnome/sources/evince/3.11/${name}.tar.xz";
|
|
sha256 = "0qflxvvvqn1khyk93isjhp6v719pvmn3vpfxnrsh63f1a6h0j5r8";
|
|
};
|
|
|
|
buildInputs = [
|
|
pkgconfig intltool perl perlXMLParser libxml2
|
|
glib gtk3 pango atk gdk_pixbuf
|
|
itstool gnome_icon_theme libgnome_keyring gsettings_desktop_schemas
|
|
poppler ghostscriptX djvulibre libspectre
|
|
makeWrapper libsecret
|
|
];
|
|
|
|
|
|
preFixup = "rm $out/share/icons/hicolor/icon-theme.cache";
|
|
|
|
configureFlags = [
|
|
"--disable-nautilus" # Do not use nautilus
|
|
"--disable-dbus" # strange compilation error
|
|
];
|
|
|
|
preConfigure = with stdenv.lib;
|
|
optionalString doCheck ''
|
|
for file in test/*.py; do
|
|
echo "patching $file"
|
|
sed '1s,/usr,${python},' -i "$file"
|
|
done
|
|
'' + optionalString (recentListSize != null) ''
|
|
sed -i 's/\(gtk_recent_chooser_set_limit .*\)5)/\1${builtins.toString recentListSize})/' shell/ev-open-recent-action.c
|
|
sed -i 's/\(if (++n_items == \)5\(.*\)/\1${builtins.toString recentListSize}\2/' shell/ev-window.c
|
|
'';
|
|
|
|
postInstall = ''
|
|
# Tell Glib/GIO about the MIME info directory, which is used
|
|
# by `g_file_info_get_content_type ()'.
|
|
wrapProgram "$out/bin/evince" \
|
|
--prefix XDG_DATA_DIRS : "${shared_mime_info}/share:$out/share"
|
|
'';
|
|
doCheck = false; # would need pythonPackages.dogTail, which is missing
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = http://www.gnome.org/projects/evince/;
|
|
description = "GNOME's document viewer";
|
|
|
|
longDescription = ''
|
|
Evince is a document viewer for multiple document formats. It
|
|
currently supports PDF, PostScript, DjVu, TIFF and DVI. The goal
|
|
of Evince is to replace the multiple document viewers that exist
|
|
on the GNOME Desktop with a single simple application.
|
|
'';
|
|
|
|
license = "GPLv2+";
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|