2018-11-02 08:20:05 +00:00
|
|
|
{ stdenv, lib, fetchurl, pkgconfig, freetype, harfbuzz, openjpeg
|
2017-12-31 19:27:37 +00:00
|
|
|
, jbig2dec, libjpeg , darwin
|
2017-12-31 00:54:47 +00:00
|
|
|
, enableX11 ? true, libX11, libXext, libXi, libXrandr
|
2017-09-27 21:29:38 +01:00
|
|
|
, enableCurl ? true, curl, openssl
|
2018-02-24 12:59:47 +00:00
|
|
|
, enableGL ? true, freeglut, libGLU
|
2017-09-27 21:29:38 +01:00
|
|
|
}:
|
2015-04-19 07:57:45 +01:00
|
|
|
|
2017-11-20 07:27:03 +00:00
|
|
|
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 {
|
2018-11-02 08:20:05 +00:00
|
|
|
version = "1.14.0";
|
2014-06-13 10:29:52 +01:00
|
|
|
name = "mupdf-${version}";
|
2010-08-09 21:59:38 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-03-25 06:04:25 +01:00
|
|
|
url = "https://mupdf.com/downloads/archive/${name}-source.tar.gz";
|
2018-11-02 08:20:05 +00:00
|
|
|
sha256 = "093p7lv6pgyymagn28n58fs0np928r0i5p2az9cc4gwccwx4hhy4";
|
2010-08-09 21:59:38 +01:00
|
|
|
};
|
|
|
|
|
2018-11-02 08:20:05 +00:00
|
|
|
patches =
|
2018-06-10 21:01:05 +01:00
|
|
|
# Use shared libraries to decrease size
|
2018-11-02 08:20:05 +00:00
|
|
|
stdenv.lib.optional (!stdenv.isDarwin) ./mupdf-1.14-shared_libs.patch
|
2018-06-10 21:01:05 +01:00
|
|
|
++ stdenv.lib.optional stdenv.isDarwin ./darwin.patch
|
2017-12-31 19:27:37 +00:00
|
|
|
;
|
2016-08-03 13:07:50 +01:00
|
|
|
|
2017-11-20 07:27:03 +00:00
|
|
|
postPatch = ''
|
|
|
|
sed -i "s/__OPENJPEG__VERSION__/${openJpegVersion}/" source/fitz/load-jpx.c
|
|
|
|
'';
|
|
|
|
|
2018-11-02 08:20:05 +00:00
|
|
|
makeFlags = [ "prefix=$(out) USE_SYSTEM_LIBS=yes" ];
|
2015-11-25 15:28:57 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2018-02-24 12:59:47 +00:00
|
|
|
buildInputs = [ freetype harfbuzz openjpeg jbig2dec libjpeg freeglut libGLU ]
|
2017-12-31 00:54:47 +00:00
|
|
|
++ lib.optionals enableX11 [ libX11 libXext libXi libXrandr ]
|
|
|
|
++ lib.optionals enableCurl [ curl openssl ]
|
2017-12-31 19:27:37 +00:00
|
|
|
++ lib.optionals enableGL (
|
|
|
|
if stdenv.isDarwin then
|
|
|
|
with darwin.apple_sdk.frameworks; [ GLUT OpenGL ]
|
|
|
|
else
|
2018-02-24 12:59:47 +00:00
|
|
|
[ freeglut libGLU ])
|
2017-12-31 19:27:37 +00:00
|
|
|
;
|
2017-07-11 10:14:14 +01:00
|
|
|
outputs = [ "bin" "dev" "out" "man" "doc" ];
|
2010-08-09 21:59:38 +01:00
|
|
|
|
2016-08-18 13:12:07 +01:00
|
|
|
preConfigure = ''
|
|
|
|
# Don't remove mujs because upstream version is incompatible
|
2017-08-03 00:39:41 +01:00
|
|
|
rm -rf thirdparty/{curl,freetype,glfw,harfbuzz,jbig2dec,libjpeg,openjpeg,zlib}
|
2016-08-18 13:12:07 +01:00
|
|
|
'';
|
2014-05-17 13:14:42 +01:00
|
|
|
|
2016-08-18 13:12:07 +01:00
|
|
|
postInstall = ''
|
2014-05-17 13:14:42 +01:00
|
|
|
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
|
2015-11-25 14:58:12 +00:00
|
|
|
Version: ${version}
|
2016-08-18 13:12:07 +01:00
|
|
|
Libs: -L$out/lib -lmupdf -lmupdfthird
|
2016-08-31 11:12:11 +01:00
|
|
|
Cflags: -I$dev/include
|
2014-05-17 13:14:42 +01:00
|
|
|
EOF
|
|
|
|
|
2016-08-18 13:12:07 +01:00
|
|
|
moveToOutput "bin" "$bin"
|
|
|
|
mkdir -p $bin/share/applications
|
|
|
|
cat > $bin/share/applications/mupdf.desktop <<EOF
|
2013-08-29 18:29:22 +01:00
|
|
|
[Desktop Entry]
|
|
|
|
Type=Application
|
|
|
|
Version=1.0
|
|
|
|
Name=mupdf
|
|
|
|
Comment=PDF viewer
|
2016-08-18 13:12:07 +01:00
|
|
|
Exec=$bin/bin/mupdf-x11 %f
|
2013-08-29 18:29:22 +01:00
|
|
|
Terminal=false
|
|
|
|
EOF
|
|
|
|
'';
|
2016-08-18 13:12:07 +01:00
|
|
|
|
2016-06-12 04:34:57 +01:00
|
|
|
enableParallelBuilding = true;
|
2013-08-29 18:29:22 +01:00
|
|
|
|
2016-06-12 04:34:57 +01:00
|
|
|
meta = with stdenv.lib; {
|
2018-06-23 12:34:55 +01:00
|
|
|
homepage = https://mupdf.com;
|
2014-04-03 05:55:17 +01:00
|
|
|
repositories.git = git://git.ghostscript.com/mupdf.git;
|
2017-05-26 16:24:37 +01:00
|
|
|
description = "Lightweight PDF, XPS, and E-book viewer and toolkit written in portable C";
|
2017-10-29 16:19:18 +00:00
|
|
|
license = licenses.agpl3Plus;
|
2018-07-22 20:50:19 +01:00
|
|
|
maintainers = with maintainers; [ vrthra fpletz ];
|
2017-12-31 19:27:37 +00:00
|
|
|
platforms = platforms.unix;
|
2010-08-09 21:59:38 +01:00
|
|
|
};
|
|
|
|
}
|