2016-11-09 14:47:35 +00:00
|
|
|
{ stdenv, fetchurl, fetchpatch, poppler_utils, pkgconfig, libpng
|
2017-06-02 15:40:19 +00:00
|
|
|
, imagemagick, libjpeg, fontconfig, podofo, qtbase, qmake, icu, sqlite
|
2016-11-09 14:47:35 +00:00
|
|
|
, makeWrapper, unrarSupport ? false, chmlib, python2Packages, xz, libusb1, libmtp
|
2017-06-13 20:09:48 +00:00
|
|
|
, xdg_utils, makeDesktopItem, wrapGAppsHook
|
2010-03-23 14:04:47 +00:00
|
|
|
}:
|
2010-01-07 22:47:30 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-02-04 19:46:10 +00:00
|
|
|
version = "3.16.0";
|
2015-11-27 09:10:04 +00:00
|
|
|
name = "calibre-${version}";
|
2010-01-07 22:47:30 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2016-08-09 03:40:07 +00:00
|
|
|
url = "https://download.calibre-ebook.com/${version}/${name}.tar.xz";
|
2018-02-04 19:46:10 +00:00
|
|
|
sha256 = "0dsnn974lfd6xbnyjhgxl2hd07kjhm1w9plqi28mx8nqa8bwqira";
|
2010-01-07 22:47:30 +00:00
|
|
|
};
|
|
|
|
|
2016-01-05 20:35:08 +00:00
|
|
|
patches = [
|
2016-09-07 02:32:06 +00:00
|
|
|
# Patches from Debian that:
|
|
|
|
# - disable plugin installation (very insecure)
|
|
|
|
# - switches the version update from enabled to disabled by default
|
|
|
|
(fetchpatch {
|
|
|
|
name = "disable_plugins.patch";
|
|
|
|
url = "http://bazaar.launchpad.net/~calibre-packagers/calibre/debian/download/head:/disable_plugins.py-20111220183043-dcl08ccfagjxt1dv-1/disable_plugins.py";
|
|
|
|
sha256 = "19spdx52dhbrfn9lm084yl3cfwm6f90imd51k97sf7flmpl569pk";
|
|
|
|
})
|
|
|
|
(fetchpatch {
|
|
|
|
name = "no_updates_dialog.patch";
|
|
|
|
url = "http://bazaar.launchpad.net/~calibre-packagers/calibre/debian/download/head:/no_updates_dialog.pa-20081231120426-rzzufl0zo66t3mtc-16/no_updates_dialog.patch";
|
|
|
|
sha256 = "16xwa2fa47jvs954fjrwr8rhh89aljgi1d1wrfxa40sknlmfwxif";
|
|
|
|
})
|
|
|
|
# the unrar patch is not from debian
|
2016-01-05 20:35:08 +00:00
|
|
|
] ++ stdenv.lib.optional (!unrarSupport) ./dont_build_unrar_plugin.patch;
|
2016-01-02 17:52:57 +00:00
|
|
|
|
|
|
|
prePatch = ''
|
2016-11-09 14:47:35 +00:00
|
|
|
sed -i "/pyqt_sip_dir/ s:=.*:= '${python2Packages.pyqt5}/share/sip/PyQt5':" \
|
2014-08-23 10:03:03 +00:00
|
|
|
setup/build_environment.py
|
2016-09-07 02:32:06 +00:00
|
|
|
|
|
|
|
# Remove unneeded files and libs
|
|
|
|
rm -rf resources/calibre-portable.* \
|
2017-07-28 15:46:54 +00:00
|
|
|
src/odf
|
2013-08-25 07:49:20 +00:00
|
|
|
'';
|
|
|
|
|
2016-04-25 18:37:47 +00:00
|
|
|
dontUseQmakeConfigure = true;
|
|
|
|
|
2017-04-16 04:19:58 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2017-06-02 15:40:19 +00:00
|
|
|
nativeBuildInputs = [ makeWrapper pkgconfig qmake ];
|
2014-08-23 10:03:03 +00:00
|
|
|
|
2016-09-07 02:32:06 +00:00
|
|
|
buildInputs = [
|
2016-12-04 13:16:40 +00:00
|
|
|
poppler_utils libpng imagemagick libjpeg
|
2017-06-13 20:09:48 +00:00
|
|
|
fontconfig podofo qtbase chmlib icu sqlite libusb1 libmtp xdg_utils wrapGAppsHook
|
2016-11-09 14:47:35 +00:00
|
|
|
] ++ (with python2Packages; [
|
2017-12-10 14:27:06 +00:00
|
|
|
apsw cssselect cssutils dateutil dnspython html5-parser lxml mechanize netifaces pillow
|
2016-11-09 14:47:35 +00:00
|
|
|
python pyqt5 sip
|
2017-06-25 06:45:50 +00:00
|
|
|
regex msgpack
|
2016-09-07 02:32:06 +00:00
|
|
|
# the following are distributed with calibre, but we use upstream instead
|
2017-07-28 15:46:54 +00:00
|
|
|
odfpy
|
2016-09-07 02:32:06 +00:00
|
|
|
]);
|
2010-01-07 22:47:30 +00:00
|
|
|
|
|
|
|
installPhase = ''
|
2017-06-05 05:10:49 +00:00
|
|
|
runHook preInstall
|
|
|
|
|
2010-02-28 22:42:39 +00:00
|
|
|
export HOME=$TMPDIR/fakehome
|
2016-04-16 17:45:46 +00:00
|
|
|
export POPPLER_INC_DIR=${poppler_utils.dev}/include/poppler
|
2016-01-24 07:30:11 +00:00
|
|
|
export POPPLER_LIB_DIR=${poppler_utils.out}/lib
|
2016-05-22 11:41:15 +00:00
|
|
|
export MAGICK_INC=${imagemagick.dev}/include/ImageMagick
|
|
|
|
export MAGICK_LIB=${imagemagick.out}/lib
|
2015-10-05 10:23:02 +00:00
|
|
|
export FC_INC_DIR=${fontconfig.dev}/include/fontconfig
|
|
|
|
export FC_LIB_DIR=${fontconfig.lib}/lib
|
2010-01-07 22:47:30 +00:00
|
|
|
export PODOFO_INC_DIR=${podofo}/include/podofo
|
|
|
|
export PODOFO_LIB_DIR=${podofo}/lib
|
2016-11-09 14:47:35 +00:00
|
|
|
export SIP_BIN=${python2Packages.sip}/bin/sip
|
|
|
|
${python2Packages.python.interpreter} setup.py install --prefix=$out
|
2010-01-07 22:47:30 +00:00
|
|
|
|
|
|
|
PYFILES="$out/bin/* $out/lib/calibre/calibre/web/feeds/*.py
|
|
|
|
$out/lib/calibre/calibre/ebooks/metadata/*.py
|
|
|
|
$out/lib/calibre/calibre/ebooks/rtf2xml/*.py"
|
|
|
|
|
2011-12-29 16:22:46 +00:00
|
|
|
sed -i "s/env python[0-9.]*/python/" $PYFILES
|
2014-08-23 10:03:03 +00:00
|
|
|
sed -i "2i import sys; sys.argv[0] = 'calibre'" $out/bin/calibre
|
|
|
|
|
2010-01-07 22:47:30 +00:00
|
|
|
for a in $out/bin/*; do
|
2014-08-23 10:03:03 +00:00
|
|
|
wrapProgram $a --prefix PYTHONPATH : $PYTHONPATH \
|
2016-02-01 18:46:18 +00:00
|
|
|
--prefix PATH : ${poppler_utils.out}/bin
|
2010-01-07 22:47:30 +00:00
|
|
|
done
|
2016-08-09 03:40:07 +00:00
|
|
|
|
|
|
|
# Replace @out@ by the output path.
|
|
|
|
mkdir -p $out/share/applications/
|
|
|
|
cp {$calibreDesktopItem,$ebookEditDesktopItem,$ebookViewerDesktopItem}/share/applications/* $out/share/applications/
|
|
|
|
for entry in $out/share/applications/*.desktop; do
|
|
|
|
substituteAllInPlace $entry
|
|
|
|
done
|
2017-06-05 05:10:49 +00:00
|
|
|
|
2017-07-28 15:46:54 +00:00
|
|
|
mkdir -p $out/share
|
|
|
|
cp -a man-pages $out/share/man
|
|
|
|
|
2017-06-05 05:10:49 +00:00
|
|
|
runHook postInstall
|
2010-01-07 22:47:30 +00:00
|
|
|
'';
|
|
|
|
|
2016-08-09 03:40:07 +00:00
|
|
|
calibreDesktopItem = makeDesktopItem {
|
|
|
|
name = "calibre";
|
|
|
|
desktopName = "calibre";
|
|
|
|
exec = "@out@/bin/calibre --detach %F";
|
|
|
|
genericName = "E-book library management";
|
|
|
|
icon = "@out@/share/calibre/images/library.png";
|
|
|
|
comment = "Manage, convert, edit, and read e-books";
|
|
|
|
mimeType = stdenv.lib.concatStringsSep ";" [
|
|
|
|
"application/x-mobipocket-subscription"
|
|
|
|
"application/vnd.openxmlformats-officedocument.wordprocessingml.document"
|
|
|
|
"text/html"
|
|
|
|
"application/x-cbc"
|
|
|
|
"application/ereader"
|
|
|
|
"application/oebps-package+xml"
|
|
|
|
"image/vnd.djvu"
|
|
|
|
"application/x-sony-bbeb"
|
|
|
|
"application/vnd.ms-word.document.macroenabled.12"
|
|
|
|
"text/rtf"
|
|
|
|
"text/x-markdown"
|
|
|
|
"application/pdf"
|
|
|
|
"application/x-cbz"
|
|
|
|
"application/x-mobipocket-ebook"
|
|
|
|
"application/x-cbr"
|
|
|
|
"application/x-mobi8-ebook"
|
|
|
|
"text/fb2+xml"
|
|
|
|
"application/vnd.oasis.opendocument.text"
|
|
|
|
"application/epub+zip"
|
|
|
|
"text/plain"
|
|
|
|
"application/xhtml+xml"
|
|
|
|
];
|
|
|
|
categories = "Office";
|
|
|
|
extraEntries = ''
|
2016-09-23 02:44:51 +00:00
|
|
|
Actions=Edit;Viewer;
|
2016-08-09 03:40:07 +00:00
|
|
|
|
2016-09-23 02:44:51 +00:00
|
|
|
[Desktop Action Edit]
|
2016-08-09 03:40:07 +00:00
|
|
|
Name=Edit E-book
|
|
|
|
Icon=@out@/share/calibre/images/tweak.png
|
|
|
|
Exec=@out@/bin/ebook-edit --detach %F
|
|
|
|
|
2016-09-23 02:44:51 +00:00
|
|
|
[Desktop Action Viewer]
|
2016-08-09 03:40:07 +00:00
|
|
|
Name=E-book Viewer
|
|
|
|
Icon=@out@/share/calibre/images/viewer.png
|
|
|
|
Exec=@out@/bin/ebook-viewer --detach %F
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
ebookEditDesktopItem = makeDesktopItem {
|
|
|
|
name = "calibre-edit-ebook";
|
|
|
|
desktopName = "Edit E-book";
|
|
|
|
genericName = "E-book Editor";
|
|
|
|
comment = "Edit e-books";
|
|
|
|
icon = "@out@/share/calibre/images/tweak.png";
|
|
|
|
exec = "@out@/bin/ebook-edit --detach %F";
|
|
|
|
categories = "Office;Publishing";
|
|
|
|
mimeType = "application/epub+zip";
|
|
|
|
extraEntries = "NoDisplay=true";
|
|
|
|
};
|
|
|
|
|
|
|
|
ebookViewerDesktopItem = makeDesktopItem {
|
|
|
|
name = "calibre-ebook-viewer";
|
|
|
|
desktopName = "E-book Viewer";
|
|
|
|
genericName = "E-book Viewer";
|
|
|
|
comment = "Read e-books in all the major formats";
|
|
|
|
icon = "@out@/share/calibre/images/viewer.png";
|
|
|
|
exec = "@out@/bin/ebook-viewer --detach %F";
|
|
|
|
categories = "Office;Viewer";
|
|
|
|
mimeType = "application/epub+zip";
|
|
|
|
extraEntries = "NoDisplay=true";
|
|
|
|
};
|
|
|
|
|
2013-07-26 11:18:08 +00:00
|
|
|
meta = with stdenv.lib; {
|
2010-01-07 22:47:30 +00:00
|
|
|
description = "Comprehensive e-book software";
|
2016-08-09 03:40:07 +00:00
|
|
|
homepage = https://calibre-ebook.com;
|
2016-01-02 17:52:57 +00:00
|
|
|
license = with licenses; if unrarSupport then unfreeRedistributable else gpl3;
|
2016-05-17 11:57:28 +00:00
|
|
|
maintainers = with maintainers; [ viric domenkozar pSub AndersonTorres ];
|
2013-07-26 11:18:08 +00:00
|
|
|
platforms = platforms.linux;
|
2015-11-27 09:10:04 +00:00
|
|
|
inherit version;
|
2010-01-07 22:47:30 +00:00
|
|
|
};
|
|
|
|
}
|