2020-04-24 23:36:52 +00:00
|
|
|
|
{ lib
|
|
|
|
|
, mkDerivation
|
|
|
|
|
, fetchurl
|
2021-10-17 09:34:42 +00:00
|
|
|
|
, fetchpatch
|
2020-04-24 23:36:52 +00:00
|
|
|
|
, poppler_utils
|
2021-02-05 17:12:51 +00:00
|
|
|
|
, pkg-config
|
2020-04-24 23:36:52 +00:00
|
|
|
|
, libpng
|
|
|
|
|
, imagemagick
|
|
|
|
|
, libjpeg
|
|
|
|
|
, fontconfig
|
|
|
|
|
, podofo
|
|
|
|
|
, qtbase
|
|
|
|
|
, qmake
|
|
|
|
|
, icu
|
|
|
|
|
, sqlite
|
|
|
|
|
, hunspell
|
|
|
|
|
, hyphen
|
|
|
|
|
, unrarSupport ? false
|
|
|
|
|
, chmlib
|
2021-02-05 17:12:51 +00:00
|
|
|
|
, python3Packages
|
2020-04-24 23:36:52 +00:00
|
|
|
|
, libusb1
|
|
|
|
|
, libmtp
|
2021-02-05 17:12:51 +00:00
|
|
|
|
, xdg-utils
|
2020-04-24 23:36:52 +00:00
|
|
|
|
, removeReferencesTo
|
2021-08-05 21:33:18 +00:00
|
|
|
|
, libstemmer
|
2020-04-24 23:36:52 +00:00
|
|
|
|
}:
|
|
|
|
|
|
|
|
|
|
mkDerivation rec {
|
|
|
|
|
pname = "calibre";
|
2022-01-03 16:56:52 +00:00
|
|
|
|
version = "5.34.0";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
|
url = "https://download.calibre-ebook.com/${version}/${pname}-${version}.tar.xz";
|
2022-01-03 16:56:52 +00:00
|
|
|
|
hash = "sha256-1NQB7vrcU0hR308/8keUn/rHhdvJk5Ab0pOMPyiU1+M=";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
};
|
|
|
|
|
|
2022-01-03 16:56:52 +00:00
|
|
|
|
# https://sources.debian.org/patches/calibre/${version}+dfsg-1
|
2020-04-24 23:36:52 +00:00
|
|
|
|
patches = [
|
2021-10-17 09:34:42 +00:00
|
|
|
|
# allow for plugin update check, but no calibre version check
|
|
|
|
|
(fetchpatch {
|
2021-12-06 16:07:01 +00:00
|
|
|
|
name = "0001-only-plugin-update.patch";
|
|
|
|
|
url = "https://raw.githubusercontent.com/debian-calibre/calibre/debian/${version}%2Bdfsg-1/debian/patches/0001-only-plugin-update.patch";
|
2022-01-03 16:56:52 +00:00
|
|
|
|
sha256 = "sha256:1h2hl4z9qm17crms4d1lq2cq44cnxbga1dv6qckhxvcg6pawxg3l";
|
|
|
|
|
})
|
|
|
|
|
(fetchpatch {
|
|
|
|
|
name = "0007-Hardening-Qt-code.patch";
|
|
|
|
|
url = "https://raw.githubusercontent.com/debian-calibre/calibre/debian/${version}%2Bdfsg-1/debian/patches/0007-Hardening-Qt-code.patch";
|
|
|
|
|
sha256 = "sha256:18wps7fn0cpzb7gf78f15pmbaff4vlygc9g00hq7zynfa4pcgfdg";
|
2021-10-17 09:34:42 +00:00
|
|
|
|
})
|
2021-02-16 17:04:54 +00:00
|
|
|
|
]
|
|
|
|
|
++ lib.optional (!unrarSupport) ./dont_build_unrar_plugin.patch;
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
|
|
prePatch = ''
|
2021-06-28 23:13:55 +00:00
|
|
|
|
sed -i "s@\[tool.sip.project\]@[tool.sip.project]\nsip-include-dirs = [\"${python3Packages.pyqt5}/${python3Packages.python.sitePackages}/PyQt5/bindings\"]@g" \
|
2021-02-05 17:12:51 +00:00
|
|
|
|
setup/build.py
|
2021-05-20 23:08:51 +00:00
|
|
|
|
sed -i "s/\[tool.sip.bindings.pictureflow\]/[tool.sip.bindings.pictureflow]\ntags = [\"${python3Packages.sip.platform_tag}\"]/g" \
|
2021-02-05 17:12:51 +00:00
|
|
|
|
setup/build.py
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
|
|
# Remove unneeded files and libs
|
2021-02-16 17:04:54 +00:00
|
|
|
|
rm -rf src/odf resources/calibre-portable.*
|
2020-04-24 23:36:52 +00:00
|
|
|
|
'';
|
|
|
|
|
|
|
|
|
|
dontUseQmakeConfigure = true;
|
|
|
|
|
|
2021-02-05 17:12:51 +00:00
|
|
|
|
nativeBuildInputs = [ pkg-config qmake removeReferencesTo ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
|
|
buildInputs = [
|
2020-09-25 04:45:31 +00:00
|
|
|
|
chmlib
|
|
|
|
|
fontconfig
|
|
|
|
|
hunspell
|
|
|
|
|
hyphen
|
|
|
|
|
icu
|
2020-04-24 23:36:52 +00:00
|
|
|
|
imagemagick
|
|
|
|
|
libjpeg
|
2020-09-25 04:45:31 +00:00
|
|
|
|
libmtp
|
|
|
|
|
libpng
|
2021-08-05 21:33:18 +00:00
|
|
|
|
libstemmer
|
2020-09-25 04:45:31 +00:00
|
|
|
|
libusb1
|
2020-04-24 23:36:52 +00:00
|
|
|
|
podofo
|
2020-09-25 04:45:31 +00:00
|
|
|
|
poppler_utils
|
2020-04-24 23:36:52 +00:00
|
|
|
|
qtbase
|
|
|
|
|
sqlite
|
2021-02-05 17:12:51 +00:00
|
|
|
|
xdg-utils
|
2020-04-24 23:36:52 +00:00
|
|
|
|
] ++ (
|
2021-02-05 17:12:51 +00:00
|
|
|
|
with python3Packages; [
|
2021-08-05 21:33:18 +00:00
|
|
|
|
(apsw.overrideAttrs (oldAttrs: rec {
|
|
|
|
|
setupPyBuildFlags = [ "--enable=load_extension" ];
|
|
|
|
|
}))
|
2020-09-25 04:45:31 +00:00
|
|
|
|
beautifulsoup4
|
2021-03-20 04:20:00 +00:00
|
|
|
|
cchardet
|
2020-04-24 23:36:52 +00:00
|
|
|
|
css-parser
|
2020-09-25 04:45:31 +00:00
|
|
|
|
cssselect
|
2021-07-04 02:40:35 +00:00
|
|
|
|
python-dateutil
|
2020-04-24 23:36:52 +00:00
|
|
|
|
dnspython
|
|
|
|
|
feedparser
|
2020-09-25 04:45:31 +00:00
|
|
|
|
html2text
|
2020-04-24 23:36:52 +00:00
|
|
|
|
html5-parser
|
2021-08-18 13:19:15 +00:00
|
|
|
|
jeepney
|
2020-04-24 23:36:52 +00:00
|
|
|
|
lxml
|
|
|
|
|
markdown
|
2020-09-25 04:45:31 +00:00
|
|
|
|
mechanize
|
|
|
|
|
msgpack
|
2020-04-24 23:36:52 +00:00
|
|
|
|
netifaces
|
|
|
|
|
pillow
|
2021-02-05 17:12:51 +00:00
|
|
|
|
pyqt-builder
|
2020-04-24 23:36:52 +00:00
|
|
|
|
pyqt5
|
|
|
|
|
pyqtwebengine
|
2020-09-25 04:45:31 +00:00
|
|
|
|
python
|
|
|
|
|
regex
|
2021-05-20 23:08:51 +00:00
|
|
|
|
sip
|
2022-01-13 20:06:32 +00:00
|
|
|
|
setuptools
|
2021-02-05 17:12:51 +00:00
|
|
|
|
zeroconf
|
2021-09-18 10:52:07 +00:00
|
|
|
|
jeepney
|
2022-01-13 20:06:32 +00:00
|
|
|
|
pycryptodome
|
2020-04-24 23:36:52 +00:00
|
|
|
|
# the following are distributed with calibre, but we use upstream instead
|
|
|
|
|
odfpy
|
2020-12-09 12:39:15 +00:00
|
|
|
|
] ++ lib.optional (unrarSupport) unrardll
|
2020-04-24 23:36:52 +00:00
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
|
runHook preInstall
|
|
|
|
|
|
|
|
|
|
export HOME=$TMPDIR/fakehome
|
|
|
|
|
export POPPLER_INC_DIR=${poppler_utils.dev}/include/poppler
|
|
|
|
|
export POPPLER_LIB_DIR=${poppler_utils.out}/lib
|
|
|
|
|
export MAGICK_INC=${imagemagick.dev}/include/ImageMagick
|
|
|
|
|
export MAGICK_LIB=${imagemagick.out}/lib
|
|
|
|
|
export FC_INC_DIR=${fontconfig.dev}/include/fontconfig
|
|
|
|
|
export FC_LIB_DIR=${fontconfig.lib}/lib
|
|
|
|
|
export PODOFO_INC_DIR=${podofo.dev}/include/podofo
|
|
|
|
|
export PODOFO_LIB_DIR=${podofo.lib}/lib
|
|
|
|
|
export XDG_DATA_HOME=$out/share
|
|
|
|
|
export XDG_UTILS_INSTALL_MODE="user"
|
|
|
|
|
|
2021-02-05 17:12:51 +00:00
|
|
|
|
${python3Packages.python.interpreter} setup.py install --root=$out \
|
2020-04-24 23:36:52 +00:00
|
|
|
|
--prefix=$out \
|
|
|
|
|
--libdir=$out/lib \
|
|
|
|
|
--staging-root=$out \
|
|
|
|
|
--staging-libdir=$out/lib \
|
|
|
|
|
--staging-sharedir=$out/share
|
|
|
|
|
|
|
|
|
|
PYFILES="$out/bin/* $out/lib/calibre/calibre/web/feeds/*.py
|
|
|
|
|
$out/lib/calibre/calibre/ebooks/metadata/*.py
|
|
|
|
|
$out/lib/calibre/calibre/ebooks/rtf2xml/*.py"
|
|
|
|
|
|
|
|
|
|
sed -i "s/env python[0-9.]*/python/" $PYFILES
|
|
|
|
|
sed -i "2i import sys; sys.argv[0] = 'calibre'" $out/bin/calibre
|
|
|
|
|
|
|
|
|
|
mkdir -p $out/share
|
|
|
|
|
cp -a man-pages $out/share/man
|
|
|
|
|
|
|
|
|
|
runHook postInstall
|
|
|
|
|
'';
|
|
|
|
|
|
|
|
|
|
# Wrap manually
|
|
|
|
|
dontWrapQtApps = true;
|
|
|
|
|
dontWrapGApps = true;
|
|
|
|
|
|
|
|
|
|
# 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-25 04:45:31 +00:00
|
|
|
|
remove-references-to -t ${podofo.dev} \
|
2021-02-05 17:12:51 +00:00
|
|
|
|
$out/lib/calibre/calibre/plugins/podofo.so
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
|
|
for program in $out/bin/*; do
|
|
|
|
|
wrapProgram $program \
|
|
|
|
|
''${qtWrapperArgs[@]} \
|
|
|
|
|
''${gappsWrapperArgs[@]} \
|
|
|
|
|
--prefix PYTHONPATH : $PYTHONPATH \
|
|
|
|
|
--prefix PATH : ${poppler_utils.out}/bin
|
|
|
|
|
done
|
|
|
|
|
'';
|
|
|
|
|
|
|
|
|
|
disallowedReferences = [ podofo.dev ];
|
|
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
|
homepage = "https://calibre-ebook.com";
|
2021-02-16 17:04:54 +00:00
|
|
|
|
description = "Comprehensive e-book software";
|
|
|
|
|
longDescription = ''
|
|
|
|
|
calibre is a powerful and easy to use e-book manager. Users say it’s
|
|
|
|
|
outstanding and a must-have. It’ll allow you to do nearly everything and
|
|
|
|
|
it takes things a step beyond normal e-book software. It’s also completely
|
|
|
|
|
free and open source and great for both casual users and computer experts.
|
|
|
|
|
'';
|
|
|
|
|
license = with licenses; if unrarSupport then unfreeRedistributable else gpl3Plus;
|
2021-03-09 03:18:52 +00:00
|
|
|
|
maintainers = with maintainers; [ pSub AndersonTorres ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
platforms = platforms.linux;
|
|
|
|
|
};
|
|
|
|
|
}
|