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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

142 lines
2.8 KiB
Nix
Raw Normal View History

2021-12-11 13:04:07 +01:00
{ lib
, stdenv
, fetchurl
, meson
, ninja
2021-01-17 03:21:50 +01:00
, pkg-config
, gettext
, libxml2
, appstream
, glib
, gtk3
, pango
, atk
2019-05-22 13:03:39 +02:00
, gdk-pixbuf
, shared-mime-info
, itstool
, gnome
, poppler
, ghostscriptX
, djvulibre
, libspectre
, libarchive
2021-03-21 01:32:10 +01:00
, libhandy
, libsecret
, wrapGAppsHook
, librsvg
, gobject-introspection
, yelp-tools
, gspell
, adwaita-icon-theme
, gsettings-desktop-schemas
, gnome-desktop
, dbus
, texlive
, gst_all_1
, gi-docgen
, supportMultimedia ? true # PDF multimedia
2019-02-13 22:47:50 +01:00
, libgxps
, supportXPS ? true # Open XML Paper Specification via libgxps
2021-12-02 15:28:26 +01:00
, withLibsecret ? true
}:
stdenv.mkDerivation rec {
pname = "evince";
version = "43.0";
2019-10-01 06:37:57 +02:00
outputs = [ "out" "dev" "devdoc" ];
src = fetchurl {
2021-03-21 01:32:10 +01:00
url = "mirror://gnome/sources/evince/${lib.versions.major version}/${pname}-${version}.tar.xz";
sha256 = "Zr4N5LR7ETBIYQOYjMFSwErqlZULo+8W3CDC72toHUc=";
};
nativeBuildInputs = [
2019-10-01 06:37:57 +02:00
appstream
gettext
gobject-introspection
gi-docgen
2019-10-01 06:37:57 +02:00
itstool
meson
ninja
2021-01-17 03:21:50 +01:00
pkg-config
2019-10-01 06:37:57 +02:00
wrapGAppsHook
yelp-tools
];
buildInputs = [
2019-10-01 06:37:57 +02:00
adwaita-icon-theme
atk
2019-10-01 06:37:57 +02:00
dbus # only needed to find the service directory
djvulibre
2019-05-22 13:03:39 +02:00
gdk-pixbuf
ghostscriptX
2019-10-01 06:37:57 +02:00
glib
gnome-desktop
gsettings-desktop-schemas
gspell
gtk3
libarchive
2021-03-21 01:32:10 +01:00
libhandy
librsvg
2019-10-01 06:37:57 +02:00
libspectre
libxml2
pango
poppler
texlive.bin.core # kpathsea for DVI support
2021-12-02 15:28:26 +01:00
] ++ lib.optionals withLibsecret [
libsecret
2021-10-07 05:44:21 +02:00
] ++ lib.optionals 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"
2021-12-02 15:28:26 +01:00
] ++ lib.optionals (!withLibsecret) [
"-Dkeyring=disabled"
] ++ lib.optionals (!supportMultimedia) [
"-Dmultimedia=disabled"
];
2019-02-13 22:47:50 +01:00
NIX_CFLAGS_COMPILE = "-I${glib.dev}/include/gio-unix-2.0";
preFixup = ''
gappsWrapperArgs+=(--prefix XDG_DATA_DIRS : "${shared-mime-info}/share")
'';
postFixup = ''
# Cannot be in postInstall, otherwise _multioutDocs hook in preFixup will move right back.
moveToOutput "share/doc" "$devdoc"
'';
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-10-07 05:44:21 +02:00
license = licenses.gpl2Plus;
platforms = platforms.linux;
2021-10-07 05:44:21 +02:00
maintainers = teams.gnome.members ++ teams.pantheon.members;
};
}