66d7126255
Since years I'm not maintaining anything of the list below other than some updates when I needed them for some reason. Other people is doing that maintenance on my behalf so I better take me out but for very few packages. Finally!
97 lines
2.9 KiB
Nix
97 lines
2.9 KiB
Nix
{ stdenv, lib, fetchurl, fetchpatch, pkgconfig, freetype, harfbuzz, openjpeg
|
|
, jbig2dec, libjpeg , darwin
|
|
, enableX11 ? true, libX11, libXext, libXi, libXrandr
|
|
, enableCurl ? true, curl, openssl
|
|
, enableGL ? true, freeglut, libGLU
|
|
}:
|
|
|
|
let
|
|
|
|
# OpenJPEG version is hardcoded in package source
|
|
openJpegVersion = with stdenv;
|
|
lib.concatStringsSep "." (lib.lists.take 2
|
|
(lib.splitString "." (lib.getVersion openjpeg)));
|
|
|
|
|
|
in stdenv.mkDerivation rec {
|
|
version = "1.13.0";
|
|
name = "mupdf-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "https://mupdf.com/downloads/archive/${name}-source.tar.gz";
|
|
sha256 = "02faww5bnjw76k6igrjzwf0lnw4xd9ckc8d6ilc3c4gfrdi6j707";
|
|
};
|
|
|
|
patches = [
|
|
(fetchpatch {
|
|
name = "CVE-2018-10289.patch";
|
|
url = "https://bugs.ghostscript.com/attachment.cgi?id=15230";
|
|
sha256 = "0jmpacxd9930g6k57kda9jrcrbk75whdlv8xwmqg5jwn848qvy4q";
|
|
})
|
|
]
|
|
# Use shared libraries to decrease size
|
|
++ stdenv.lib.optional (!stdenv.isDarwin) ./mupdf-1.13-shared_libs-1.patch
|
|
++ stdenv.lib.optional stdenv.isDarwin ./darwin.patch
|
|
;
|
|
|
|
postPatch = ''
|
|
sed -i "s/__OPENJPEG__VERSION__/${openJpegVersion}/" source/fitz/load-jpx.c
|
|
'';
|
|
|
|
makeFlags = [ "prefix=$(out)" ];
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [ freetype harfbuzz openjpeg jbig2dec libjpeg freeglut libGLU ]
|
|
++ lib.optionals enableX11 [ libX11 libXext libXi libXrandr ]
|
|
++ lib.optionals enableCurl [ curl openssl ]
|
|
++ lib.optionals enableGL (
|
|
if stdenv.isDarwin then
|
|
with darwin.apple_sdk.frameworks; [ GLUT OpenGL ]
|
|
else
|
|
[ freeglut libGLU ])
|
|
;
|
|
outputs = [ "bin" "dev" "out" "man" "doc" ];
|
|
|
|
preConfigure = ''
|
|
# Don't remove mujs because upstream version is incompatible
|
|
rm -rf thirdparty/{curl,freetype,glfw,harfbuzz,jbig2dec,libjpeg,openjpeg,zlib}
|
|
'';
|
|
|
|
postInstall = ''
|
|
mkdir -p "$out/lib/pkgconfig"
|
|
cat >"$out/lib/pkgconfig/mupdf.pc" <<EOF
|
|
prefix=$out
|
|
libdir=$out/lib
|
|
includedir=$out/include
|
|
|
|
Name: mupdf
|
|
Description: Library for rendering PDF documents
|
|
Version: ${version}
|
|
Libs: -L$out/lib -lmupdf -lmupdfthird
|
|
Cflags: -I$dev/include
|
|
EOF
|
|
|
|
moveToOutput "bin" "$bin"
|
|
mkdir -p $bin/share/applications
|
|
cat > $bin/share/applications/mupdf.desktop <<EOF
|
|
[Desktop Entry]
|
|
Type=Application
|
|
Version=1.0
|
|
Name=mupdf
|
|
Comment=PDF viewer
|
|
Exec=$bin/bin/mupdf-x11 %f
|
|
Terminal=false
|
|
EOF
|
|
'';
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://mupdf.com;
|
|
repositories.git = git://git.ghostscript.com/mupdf.git;
|
|
description = "Lightweight PDF, XPS, and E-book viewer and toolkit written in portable C";
|
|
license = licenses.agpl3Plus;
|
|
maintainers = with maintainers; [ vrthra fpletz ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|