bcb2f287e1
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
71 lines
1.3 KiB
Nix
71 lines
1.3 KiB
Nix
{
|
|
stdenv,
|
|
lib,
|
|
meson,
|
|
ninja,
|
|
fetchurl,
|
|
cairo,
|
|
girara,
|
|
gtk-mac-integration,
|
|
gumbo,
|
|
jbig2dec,
|
|
libjpeg,
|
|
mupdf,
|
|
openjpeg,
|
|
pkg-config,
|
|
zathura_core,
|
|
tesseract,
|
|
leptonica,
|
|
mujs,
|
|
gitUpdater,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "0.4.2";
|
|
pname = "zathura-pdf-mupdf";
|
|
|
|
src = fetchurl {
|
|
url = "https://pwmt.org/projects/${pname}/download/${pname}-${version}.tar.xz";
|
|
hash = "sha256-fFC+z9mJX9ccExsV336Ut+zJJa8UdfUz/qVp9YgcnhM=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
meson
|
|
ninja
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs = [
|
|
cairo
|
|
girara
|
|
gumbo
|
|
jbig2dec
|
|
libjpeg
|
|
mupdf
|
|
openjpeg
|
|
zathura_core
|
|
tesseract
|
|
leptonica
|
|
mujs
|
|
] ++ lib.optional stdenv.isDarwin gtk-mac-integration;
|
|
|
|
PKG_CONFIG_ZATHURA_PLUGINDIR = "lib/zathura";
|
|
|
|
postPatch = ''
|
|
sed -i -e '/^mupdfthird =/d' -e 's/, mupdfthird//g' meson.build
|
|
'';
|
|
|
|
passthru.updateScript = gitUpdater { url = "https://git.pwmt.org/pwmt/zathura-pdf-mupdf.git"; };
|
|
|
|
meta = with lib; {
|
|
homepage = "https://pwmt.org/projects/zathura-pdf-mupdf/";
|
|
description = "Zathura PDF plugin (mupdf)";
|
|
longDescription = ''
|
|
The zathura-pdf-mupdf plugin adds PDF support to zathura by
|
|
using the mupdf rendering library.
|
|
'';
|
|
license = licenses.zlib;
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ ];
|
|
};
|
|
}
|