5c370c0b2a
GitOrigin-RevId: 33d1e753c82ffc557b4a585c77de43d4c922ebb5
133 lines
2.7 KiB
Nix
133 lines
2.7 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitLab
|
|
, meson
|
|
, ninja
|
|
, pkg-config
|
|
, appstream
|
|
, desktop-file-utils
|
|
, gtk4
|
|
, glib
|
|
, pango
|
|
, atk
|
|
, gdk-pixbuf
|
|
, shared-mime-info
|
|
, itstool
|
|
, poppler
|
|
, ghostscriptX
|
|
, djvulibre
|
|
, libspectre
|
|
, libarchive
|
|
, libsecret
|
|
, wrapGAppsHook4
|
|
, librsvg
|
|
, gobject-introspection
|
|
, yelp-tools
|
|
, gsettings-desktop-schemas
|
|
, dbus
|
|
, gi-docgen
|
|
, libgxps
|
|
, supportXPS ? true # Open XML Paper Specification via libgxps
|
|
, withLibsecret ? true
|
|
, libadwaita
|
|
, exempi
|
|
, cargo
|
|
, rustPlatform
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "papers";
|
|
version = "45.0-unstable-2024-03-27";
|
|
|
|
outputs = [ "out" "dev" "devdoc" ];
|
|
|
|
src = fetchFromGitLab {
|
|
domain = "gitlab.gnome.org";
|
|
owner = "GNOME/Incubator";
|
|
repo = "papers";
|
|
rev = "4374535f4f5e5cea613b2df7b3dc99e97da27d99";
|
|
hash = "sha256-wjLRGENJ+TjXV3JPn/lcqv3DonAsJrC0OiLs1DoNHkc=";
|
|
};
|
|
|
|
cargoRoot = "shell-rs";
|
|
|
|
cargoDeps = rustPlatform.importCargoLock {
|
|
lockFile = ./Cargo.lock;
|
|
|
|
outputHashes = {
|
|
"cairo-rs-0.20.0" = "sha256-aCG9rh/tXqmcCIijuqJZJEgrGdG/IygcdWlvKYzVPhU=";
|
|
"gdk4-0.9.0" = "sha256-KYisC8nm6KVfowiKXtMoimXzB3UjHarH+2ZLhvW8oMU=";
|
|
"libadwaita-0.7.0" = "sha256-gfkaj/BIqvWj1UNVAGNNXww4aoJPlqvBwIRGmDiv48E=";
|
|
};
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
appstream
|
|
desktop-file-utils
|
|
gobject-introspection
|
|
gi-docgen
|
|
itstool
|
|
meson
|
|
ninja
|
|
pkg-config
|
|
wrapGAppsHook4
|
|
yelp-tools
|
|
cargo
|
|
rustPlatform.cargoSetupHook
|
|
];
|
|
|
|
buildInputs = [
|
|
atk
|
|
dbus # only needed to find the service directory
|
|
djvulibre
|
|
exempi
|
|
gdk-pixbuf
|
|
ghostscriptX
|
|
glib
|
|
gtk4
|
|
gsettings-desktop-schemas
|
|
libadwaita
|
|
libarchive
|
|
librsvg
|
|
libspectre
|
|
pango
|
|
poppler
|
|
] ++ lib.optionals withLibsecret [
|
|
libsecret
|
|
] ++ lib.optionals supportXPS [
|
|
libgxps
|
|
];
|
|
|
|
mesonFlags = [
|
|
"-Dnautilus=false"
|
|
"-Dps=enabled"
|
|
] ++ lib.optionals (!withLibsecret) [
|
|
"-Dkeyring=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"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://wiki.gnome.org/Apps/papers";
|
|
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";
|
|
maintainers = teams.gnome.members;
|
|
};
|
|
})
|