nixpkgs/pkgs/applications/misc/mupdf/default.nix

92 lines
2.8 KiB
Nix
Raw Normal View History

2018-12-28 12:43:18 +00:00
{ stdenv, lib, fetchurl, fetchpatch, 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
, enableCurl ? true, curl, openssl
, enableGL ? true, freeglut, libGLU
}:
2015-04-19 06:57:45 +00:00
2017-11-20 07:27:03 +00:00
let
# OpenJPEG version is hardcoded in package source
openJpegVersion = with stdenv;
lib.versions.majorMinor (lib.getVersion openjpeg);
2017-11-20 07:27:03 +00:00
in stdenv.mkDerivation rec {
version = "1.17.0";
pname = "mupdf";
src = fetchurl {
url = "https://mupdf.com/downloads/archive/${pname}-${version}-source.tar.gz";
sha256 = "13nl9nrcx2awz9l83mlv2psi1lmn3hdnfwxvwgwiwbxlkjl3zqq0";
};
patches =
# Use shared libraries to decrease size
2019-09-11 15:34:10 +00:00
stdenv.lib.optional (!stdenv.isDarwin) ./mupdf-1.14-shared_libs.patch
++ stdenv.lib.optional stdenv.isDarwin ./darwin.patch
2017-12-31 19:27:37 +00:00
;
2017-11-20 07:27:03 +00:00
postPatch = ''
sed -i "s/__OPENJPEG__VERSION__/${openJpegVersion}/" source/fitz/load-jpx.c
'';
makeFlags = [ "prefix=$(out) USE_SYSTEM_LIBS=yes" ];
2015-11-25 15:28:57 +00:00
nativeBuildInputs = [ pkgconfig ];
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
[ freeglut libGLU ])
2017-12-31 19:27:37 +00:00
;
outputs = [ "bin" "dev" "out" "man" "doc" ];
2016-08-18 12:12:07 +00:00
preConfigure = ''
# Don't remove mujs because upstream version is incompatible
2017-08-02 23:39:41 +00:00
rm -rf thirdparty/{curl,freetype,glfw,harfbuzz,jbig2dec,libjpeg,openjpeg,zlib}
2016-08-18 12:12:07 +00:00
'';
2014-05-17 12:14:42 +00:00
2016-08-18 12:12:07 +00:00
postInstall = ''
2014-05-17 12:14:42 +00: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}
2018-12-30 04:12:08 +00:00
Libs: -L$out/lib -lmupdf -lmupdf-third
2016-08-31 10:12:11 +00:00
Cflags: -I$dev/include
2014-05-17 12:14:42 +00:00
EOF
2016-08-18 12:12:07 +00:00
moveToOutput "bin" "$bin"
ln -s "$bin/bin/mupdf-x11" "$bin/bin/mupdf"
2016-08-18 12:12:07 +00:00
mkdir -p $bin/share/applications
cat > $bin/share/applications/mupdf.desktop <<EOF
[Desktop Entry]
Type=Application
Version=1.0
Name=mupdf
Comment=PDF viewer
2016-08-18 12:12:07 +00:00
Exec=$bin/bin/mupdf-x11 %f
Terminal=false
MimeType=application/pdf;application/x-pdf;application/x-cbz;application/oxps;application/vnd.ms-xpsdocument;application/epub+zip
EOF
'';
2016-08-18 12:12:07 +00:00
enableParallelBuilding = true;
meta = with stdenv.lib; {
homepage = "https://mupdf.com";
repositories.git = "git://git.ghostscript.com/mupdf.git";
2017-05-26 15:24:37 +00:00
description = "Lightweight PDF, XPS, and E-book viewer and toolkit written in portable C";
license = licenses.agpl3Plus;
maintainers = with maintainers; [ vrthra fpletz ];
2017-12-31 19:27:37 +00:00
platforms = platforms.unix;
};
}