Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
158 lines
2.8 KiB
Nix
158 lines
2.8 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
meson,
|
|
ninja,
|
|
pkg-config,
|
|
gettext,
|
|
libxml2,
|
|
appstream,
|
|
desktop-file-utils,
|
|
glib,
|
|
gtk3,
|
|
pango,
|
|
atk,
|
|
gdk-pixbuf,
|
|
shared-mime-info,
|
|
itstool,
|
|
gnome,
|
|
poppler,
|
|
ghostscriptX,
|
|
djvulibre,
|
|
libspectre,
|
|
libarchive,
|
|
libgxps,
|
|
libhandy,
|
|
libsecret,
|
|
wrapGAppsHook3,
|
|
librsvg,
|
|
gobject-introspection,
|
|
yelp-tools,
|
|
gspell,
|
|
gsettings-desktop-schemas,
|
|
gnome-desktop,
|
|
dbus,
|
|
texlive,
|
|
gst_all_1,
|
|
gi-docgen,
|
|
supportMultimedia ? true, # PDF multimedia
|
|
withLibsecret ? true,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "evince";
|
|
version = "48.1";
|
|
|
|
outputs = [
|
|
"out"
|
|
"dev"
|
|
"devdoc"
|
|
];
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnome/sources/evince/${lib.versions.major finalAttrs.version}/evince-${finalAttrs.version}.tar.xz";
|
|
hash = "sha256-fYuab6OgXT9bkEiFkCdojHOniP9ukjvDlFEmiElD+hA=";
|
|
};
|
|
|
|
depsBuildBuild = [
|
|
pkg-config
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
appstream
|
|
desktop-file-utils
|
|
gettext
|
|
gobject-introspection
|
|
gi-docgen
|
|
itstool
|
|
meson
|
|
ninja
|
|
pkg-config
|
|
wrapGAppsHook3
|
|
yelp-tools
|
|
];
|
|
|
|
buildInputs = [
|
|
atk
|
|
dbus # only needed to find the service directory
|
|
djvulibre
|
|
gdk-pixbuf
|
|
ghostscriptX
|
|
glib
|
|
gnome-desktop
|
|
gsettings-desktop-schemas
|
|
gspell
|
|
gtk3
|
|
libarchive
|
|
libgxps
|
|
libhandy
|
|
librsvg
|
|
libspectre
|
|
libxml2
|
|
pango
|
|
poppler
|
|
texlive.bin.core # kpathsea for DVI support
|
|
]
|
|
++ lib.optionals withLibsecret [
|
|
libsecret
|
|
]
|
|
++ 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"
|
|
]
|
|
++ lib.optionals (!withLibsecret) [
|
|
"-Dkeyring=disabled"
|
|
]
|
|
++ lib.optionals (!supportMultimedia) [
|
|
"-Dmultimedia=disabled"
|
|
];
|
|
|
|
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 = "evince";
|
|
};
|
|
};
|
|
|
|
meta = with lib; {
|
|
homepage = "https://apps.gnome.org/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 = licenses.gpl2Plus;
|
|
platforms = platforms.unix;
|
|
mainProgram = "evince";
|
|
teams = [
|
|
teams.gnome
|
|
teams.pantheon
|
|
];
|
|
};
|
|
})
|