2020-01-13 13:28:24 +00:00
|
|
|
{ lib
|
|
|
|
, mkDerivation
|
|
|
|
, fetchurl
|
|
|
|
, poppler_utils
|
|
|
|
, pkgconfig
|
|
|
|
, libpng
|
|
|
|
, imagemagick
|
|
|
|
, libjpeg
|
|
|
|
, fontconfig
|
|
|
|
, podofo
|
|
|
|
, qtbase
|
|
|
|
, qmake
|
|
|
|
, icu
|
|
|
|
, sqlite
|
|
|
|
, hunspell
|
|
|
|
, hyphen
|
|
|
|
, unrarSupport ? false
|
|
|
|
, chmlib
|
2020-09-06 03:14:02 +01:00
|
|
|
, pythonPackages
|
2020-01-13 13:28:24 +00:00
|
|
|
, libusb1
|
|
|
|
, libmtp
|
|
|
|
, xdg_utils
|
|
|
|
, makeDesktopItem
|
|
|
|
, removeReferencesTo
|
2010-03-23 14:04:47 +00:00
|
|
|
}:
|
2010-01-07 22:47:30 +00:00
|
|
|
|
2019-08-11 15:42:47 +01:00
|
|
|
mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "calibre";
|
2020-09-07 05:47:46 +01:00
|
|
|
version = "4.23.0";
|
2010-01-07 22:47:30 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "https://download.calibre-ebook.com/${version}/${pname}-${version}.tar.xz";
|
2020-09-07 05:47:46 +01:00
|
|
|
sha256 = "sha256-Ft5RRzzw4zb5RqVyUaHk9Pu6H4V/F9j8FKoTLn61lRg=";
|
2010-01-07 22:47:30 +00:00
|
|
|
};
|
|
|
|
|
2016-01-05 20:35:08 +00:00
|
|
|
patches = [
|
2016-09-07 03:32:06 +01:00
|
|
|
# Patches from Debian that:
|
|
|
|
# - disable plugin installation (very insecure)
|
2018-03-13 03:15:17 +00:00
|
|
|
./disable_plugins.patch
|
2016-09-07 03:32:06 +01:00
|
|
|
# - switches the version update from enabled to disabled by default
|
2018-03-13 03:15:17 +00:00
|
|
|
./no_updates_dialog.patch
|
2016-09-07 03:32:06 +01:00
|
|
|
# the unrar patch is not from debian
|
2019-09-28 13:47:41 +01:00
|
|
|
] ++ lib.optional (!unrarSupport) ./dont_build_unrar_plugin.patch;
|
2016-01-02 17:52:57 +00:00
|
|
|
|
|
|
|
prePatch = ''
|
2020-09-06 03:14:02 +01:00
|
|
|
sed -i "/pyqt_sip_dir/ s:=.*:= '${pythonPackages.pyqt5}/share/sip/PyQt5':" \
|
2014-08-23 11:03:03 +01:00
|
|
|
setup/build_environment.py
|
2016-09-07 03:32:06 +01:00
|
|
|
|
|
|
|
# Remove unneeded files and libs
|
|
|
|
rm -rf resources/calibre-portable.* \
|
2017-07-28 16:46:54 +01:00
|
|
|
src/odf
|
2013-08-25 08:49:20 +01:00
|
|
|
'';
|
|
|
|
|
2016-04-25 19:37:47 +01:00
|
|
|
dontUseQmakeConfigure = true;
|
|
|
|
|
2017-04-16 05:19:58 +01:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2019-09-28 13:47:41 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig qmake removeReferencesTo ];
|
|
|
|
|
2020-09-06 03:14:02 +01:00
|
|
|
CALIBRE_PY3_PORT = builtins.toString pythonPackages.isPy3k;
|
2014-08-23 11:03:03 +01:00
|
|
|
|
2016-09-07 03:32:06 +01:00
|
|
|
buildInputs = [
|
2020-09-06 03:14:02 +01:00
|
|
|
chmlib
|
|
|
|
fontconfig
|
|
|
|
hunspell
|
|
|
|
hyphen
|
|
|
|
icu
|
2020-01-13 13:28:24 +00:00
|
|
|
imagemagick
|
|
|
|
libjpeg
|
2020-09-06 03:14:02 +01:00
|
|
|
libmtp
|
|
|
|
libpng
|
|
|
|
libusb1
|
2020-01-13 13:28:24 +00:00
|
|
|
podofo
|
2020-09-06 03:14:02 +01:00
|
|
|
poppler_utils
|
2020-01-13 13:28:24 +00:00
|
|
|
qtbase
|
|
|
|
sqlite
|
|
|
|
xdg_utils
|
|
|
|
] ++ (
|
2020-09-06 03:14:02 +01:00
|
|
|
with pythonPackages; [
|
2020-01-13 13:28:24 +00:00
|
|
|
apsw
|
2020-09-06 03:14:02 +01:00
|
|
|
beautifulsoup4
|
2020-01-13 13:28:24 +00:00
|
|
|
css-parser
|
2020-09-06 03:14:02 +01:00
|
|
|
cssselect
|
2020-01-13 13:28:24 +00:00
|
|
|
dateutil
|
|
|
|
dnspython
|
|
|
|
feedparser
|
2020-09-06 03:14:02 +01:00
|
|
|
html2text
|
2020-01-13 13:28:24 +00:00
|
|
|
html5-parser
|
|
|
|
lxml
|
|
|
|
markdown
|
2020-09-06 03:14:02 +01:00
|
|
|
mechanize
|
|
|
|
msgpack
|
2020-01-13 13:28:24 +00:00
|
|
|
netifaces
|
|
|
|
pillow
|
2020-02-10 06:26:32 +00:00
|
|
|
pyqt5
|
|
|
|
pyqtwebengine
|
2020-09-06 03:14:02 +01:00
|
|
|
python
|
|
|
|
regex
|
|
|
|
sip
|
2020-01-13 13:28:24 +00:00
|
|
|
# the following are distributed with calibre, but we use upstream instead
|
|
|
|
odfpy
|
|
|
|
]
|
|
|
|
);
|
2010-01-07 22:47:30 +00:00
|
|
|
|
|
|
|
installPhase = ''
|
2017-06-05 06:10:49 +01:00
|
|
|
runHook preInstall
|
|
|
|
|
2010-02-28 22:42:39 +00:00
|
|
|
export HOME=$TMPDIR/fakehome
|
2016-04-16 18:45:46 +01: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 12:41:15 +01:00
|
|
|
export MAGICK_INC=${imagemagick.dev}/include/ImageMagick
|
|
|
|
export MAGICK_LIB=${imagemagick.out}/lib
|
2015-10-05 11:23:02 +01:00
|
|
|
export FC_INC_DIR=${fontconfig.dev}/include/fontconfig
|
|
|
|
export FC_LIB_DIR=${fontconfig.lib}/lib
|
2018-11-07 05:13:03 +00:00
|
|
|
export PODOFO_INC_DIR=${podofo.dev}/include/podofo
|
|
|
|
export PODOFO_LIB_DIR=${podofo.lib}/lib
|
2020-09-06 03:14:02 +01:00
|
|
|
export SIP_BIN=${pythonPackages.sip}/bin/sip
|
2020-04-02 12:40:18 +01:00
|
|
|
export XDG_DATA_HOME=$out/share
|
|
|
|
export XDG_UTILS_INSTALL_MODE="user"
|
|
|
|
|
2020-09-06 03:14:02 +01:00
|
|
|
${pythonPackages.python.interpreter} setup.py install --root=$out \
|
2020-04-02 12:40:18 +01:00
|
|
|
--prefix=$out \
|
|
|
|
--libdir=$out/lib \
|
|
|
|
--staging-root=$out \
|
|
|
|
--staging-libdir=$out/lib \
|
|
|
|
--staging-sharedir=$out/share
|
|
|
|
|
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 11:03:03 +01:00
|
|
|
sed -i "2i import sys; sys.argv[0] = 'calibre'" $out/bin/calibre
|
|
|
|
|
2017-07-28 16:46:54 +01:00
|
|
|
mkdir -p $out/share
|
|
|
|
cp -a man-pages $out/share/man
|
|
|
|
|
2017-06-05 06:10:49 +01:00
|
|
|
runHook postInstall
|
2010-01-07 22:47:30 +00:00
|
|
|
'';
|
|
|
|
|
2019-08-11 15:42:47 +01:00
|
|
|
# Wrap manually
|
|
|
|
dontWrapQtApps = true;
|
|
|
|
dontWrapGApps = true;
|
|
|
|
|
2018-11-07 05:13:03 +00:00
|
|
|
# Remove some references to shrink the closure size. This reference (as of
|
|
|
|
# 2018-11-06) was a single string like the following:
|
|
|
|
# /nix/store/xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx-podofo-0.9.6-dev/include/podofo/base/PdfVariant.h
|
|
|
|
preFixup = ''
|
2020-09-06 03:14:02 +01:00
|
|
|
remove-references-to -t ${podofo.dev} \
|
|
|
|
$out/lib/calibre/calibre/plugins${lib.optionalString pythonPackages.isPy3k "/3"}/podofo.so
|
2019-07-25 13:56:26 +01:00
|
|
|
|
2019-08-11 15:42:47 +01:00
|
|
|
for program in $out/bin/*; do
|
|
|
|
wrapProgram $program \
|
|
|
|
''${qtWrapperArgs[@]} \
|
|
|
|
''${gappsWrapperArgs[@]} \
|
|
|
|
--prefix PYTHONPATH : $PYTHONPATH \
|
|
|
|
--prefix PATH : ${poppler_utils.out}/bin
|
|
|
|
done
|
2019-07-25 13:56:26 +01:00
|
|
|
'';
|
|
|
|
|
2018-11-07 05:13:03 +00:00
|
|
|
disallowedReferences = [ podofo.dev ];
|
|
|
|
|
2019-09-28 13:47:41 +01:00
|
|
|
meta = with lib; {
|
2010-01-07 22:47:30 +00:00
|
|
|
description = "Comprehensive e-book software";
|
2019-09-28 13:47:41 +01:00
|
|
|
homepage = "https://calibre-ebook.com";
|
2016-01-02 17:52:57 +00:00
|
|
|
license = with licenses; if unrarSupport then unfreeRedistributable else gpl3;
|
2020-04-19 01:51:33 +01:00
|
|
|
maintainers = with maintainers; [ domenkozar pSub AndersonTorres ];
|
2013-07-26 12:18:08 +01:00
|
|
|
platforms = platforms.linux;
|
2020-04-19 01:51:33 +01:00
|
|
|
inherit version;
|
2010-01-07 22:47:30 +00:00
|
|
|
};
|
|
|
|
}
|