Files
nixpkgs/pkgs/by-name/pa/papers/package.nix
Dark Steveneq 646b892680
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
push sheeet
2025-10-09 14:15:47 +02:00

154 lines
3.4 KiB
Nix

{
lib,
stdenv,
fetchurl,
meson,
ninja,
pkg-config,
appstream,
desktop-file-utils,
gtk4,
glib,
pango,
gdk-pixbuf,
shared-mime-info,
itstool,
poppler,
nautilus,
djvulibre,
libarchive,
libsecret,
wrapGAppsHook4,
librsvg,
gobject-introspection,
yelp-tools,
gsettings-desktop-schemas,
dbus,
gi-docgen,
libsysprof-capture,
libspelling,
withLibsecret ? true,
supportNautilus ? (!stdenv.hostPlatform.isDarwin),
libadwaita,
exempi,
cargo,
rustPlatform,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "papers";
version = "48.5";
outputs = [
"out"
"dev"
"devdoc"
];
src = fetchurl {
url = "mirror://gnome/sources/papers/${lib.versions.major finalAttrs.version}/papers-${finalAttrs.version}.tar.xz";
hash = "sha256-DMjXLHHT2KqxvhCuGUGkzZLNHip+gwq3aA4sgt+xnAs=";
};
cargoDeps = rustPlatform.fetchCargoVendor {
inherit (finalAttrs)
src
pname
version
;
hash = "sha256-1HFecOTn84m9lT166HlmYjqP+KN/ZOTWW4ztigrpqNQ=";
};
nativeBuildInputs = [
appstream
desktop-file-utils
gobject-introspection
gi-docgen
itstool
meson
ninja
pkg-config
wrapGAppsHook4
yelp-tools
cargo
rustPlatform.cargoSetupHook
];
buildInputs = [
dbus # only needed to find the service directory
djvulibre
exempi
gdk-pixbuf
glib
gtk4
gsettings-desktop-schemas
libadwaita
libarchive
librsvg
libsysprof-capture
libspelling
pango
poppler
]
++ lib.optionals withLibsecret [
libsecret
]
++ lib.optionals supportNautilus [
nautilus
];
mesonFlags =
lib.optionals (!withLibsecret) [
"-Dkeyring=disabled"
]
++ lib.optionals (!supportNautilus) [
"-Dnautilus=false"
];
# For https://gitlab.gnome.org/GNOME/papers/-/blob/5efed8638dd4a2d5c36f59eb9a22158d69632e0b/shell/src/meson.build#L36
env.CARGO_BUILD_TARGET = stdenv.hostPlatform.rust.rustcTargetSpec;
postPatch = ''
substituteInPlace shell/src/meson.build --replace-fail \
"meson.current_build_dir() / rust_target / meson.project_name()" \
"meson.current_build_dir() / '${stdenv.hostPlatform.rust.cargoShortTarget}' / rust_target / meson.project_name()"
'';
postInstall = ''
substituteInPlace $out/share/thumbnailers/papers.thumbnailer \
--replace-fail '=papers-thumbnailer' "=$out/bin/papers-thumbnailer"
'';
preFixup = ''
gappsWrapperArgs+=(
--prefix XDG_DATA_DIRS : "${shared-mime-info}/share"
)
''
+ lib.optionalString stdenv.hostPlatform.isDarwin ''
install_name_tool -add_rpath "$out/lib" "$out/bin/papers"
'';
postFixup = ''
# Cannot be in postInstall, otherwise _multioutDocs hook in preFixup will move right back.
moveToOutput "share/doc" "$devdoc"
'';
meta = with lib; {
homepage = "https://gitlab.gnome.org/GNOME/papers";
changelog = "https://gitlab.gnome.org/GNOME/papers/-/blob/${finalAttrs.version}/NEWS?ref_type=tags";
description = "GNOME's document viewer";
longDescription = ''
papers is a document viewer for multiple document formats. It
currently supports PDF, PostScript, DjVu, and TIFF (not DVI anymore).
The goal of papers is to replace the evince document viewer that exist
on the GNOME Desktop with a more modern interface.
'';
license = licenses.gpl2Plus;
platforms = platforms.unix;
mainProgram = "papers";
teams = [ teams.gnome ];
};
})