nixpkgs/pkgs/desktops/gnome/core/evince/default.nix

136 lines
2.6 KiB
Nix
Raw Normal View History

{ lib, stdenv
, fetchurl
, meson
, ninja
2021-01-17 02:21:50 +00:00
, pkg-config
, gettext
, libxml2
, appstream
, glib
, gtk3
, pango
, atk
2019-05-22 11:03:39 +00:00
, gdk-pixbuf
, shared-mime-info
, itstool
, gnome
, poppler
, ghostscriptX
, djvulibre
, libspectre
, libarchive
2021-03-21 00:32:10 +00:00
, libhandy
, libsecret
, wrapGAppsHook
, librsvg
, gobject-introspection
, yelp-tools
, gspell
, adwaita-icon-theme
, gsettings-desktop-schemas
, gnome-desktop
, dbus
, python3
, texlive
, t1lib
, gst_all_1
2019-10-01 04:37:57 +00:00
, gtk-doc
, docbook-xsl-nons
, docbook_xml_dtd_43
, supportMultimedia ? true # PDF multimedia
2019-02-13 21:47:50 +00:00
, libgxps
, supportXPS ? true # Open XML Paper Specification via libgxps
}:
stdenv.mkDerivation rec {
pname = "evince";
2021-06-16 00:36:08 +00:00
version = "40.2";
2019-10-01 04:37:57 +00:00
outputs = [ "out" "dev" "devdoc" ];
src = fetchurl {
2021-03-21 00:32:10 +00:00
url = "mirror://gnome/sources/evince/${lib.versions.major version}/${pname}-${version}.tar.xz";
2021-06-16 00:36:08 +00:00
sha256 = "D/fseTdqipesTNJ00y6ATH4jbvLS1dP2Rt5uuIKmPHc=";
};
postPatch = ''
chmod +x meson_post_install.py
patchShebangs meson_post_install.py
'';
nativeBuildInputs = [
2019-10-01 04:37:57 +00:00
appstream
docbook-xsl-nons
docbook_xml_dtd_43
gettext
gobject-introspection
gtk-doc
itstool
meson
ninja
2021-01-17 02:21:50 +00:00
pkg-config
python3
2019-10-01 04:37:57 +00:00
wrapGAppsHook
yelp-tools
];
buildInputs = [
2019-10-01 04:37:57 +00:00
adwaita-icon-theme
atk
2019-10-01 04:37:57 +00:00
dbus # only needed to find the service directory
djvulibre
2019-05-22 11:03:39 +00:00
gdk-pixbuf
ghostscriptX
2019-10-01 04:37:57 +00:00
glib
gnome-desktop
gsettings-desktop-schemas
gspell
gtk3
libarchive
2021-03-21 00:32:10 +00:00
libhandy
librsvg
2019-10-01 04:37:57 +00:00
libsecret
libspectre
libxml2
pango
poppler
t1lib
2019-10-01 04:37:57 +00:00
texlive.bin.core # kpathsea for DVI support
2021-01-15 13:21:58 +00:00
] ++ lib.optional supportXPS libgxps
++ lib.optionals supportMultimedia (with gst_all_1; [
gstreamer gst-plugins-base gst-plugins-good gst-plugins-bad gst-plugins-ugly gst-libav ]);
mesonFlags = [
"-Dnautilus=false"
"-Dps=enabled"
];
2019-02-13 21:47:50 +00:00
NIX_CFLAGS_COMPILE = "-I${glib.dev}/include/gio-unix-2.0";
preFixup = ''
gappsWrapperArgs+=(--prefix XDG_DATA_DIRS : "${shared-mime-info}/share")
'';
passthru = {
updateScript = gnome.updateScript {
packageName = pname;
};
};
meta = with lib; {
homepage = "https://wiki.gnome.org/Apps/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.
'';
2021-01-15 13:21:58 +00:00
license = lib.licenses.gpl2Plus;
platforms = platforms.linux;
maintainers = teams.gnome.members;
};
}