2020-01-13 13:28:24 +00:00
|
|
|
|
{ lib
|
|
|
|
|
, mkDerivation
|
|
|
|
|
, fetchurl
|
2021-10-18 19:08:51 +01:00
|
|
|
|
, fetchpatch
|
2020-01-13 13:28:24 +00:00
|
|
|
|
, poppler_utils
|
2021-01-17 02:09:27 +00:00
|
|
|
|
, pkg-config
|
2020-01-13 13:28:24 +00:00
|
|
|
|
, libpng
|
|
|
|
|
, imagemagick
|
|
|
|
|
, libjpeg
|
|
|
|
|
, fontconfig
|
|
|
|
|
, podofo
|
|
|
|
|
, qtbase
|
|
|
|
|
, qmake
|
|
|
|
|
, icu
|
|
|
|
|
, sqlite
|
|
|
|
|
, hunspell
|
|
|
|
|
, hyphen
|
|
|
|
|
, unrarSupport ? false
|
|
|
|
|
, chmlib
|
2021-01-13 20:39:14 +00:00
|
|
|
|
, python3Packages
|
2020-01-13 13:28:24 +00:00
|
|
|
|
, libusb1
|
|
|
|
|
, libmtp
|
2021-02-01 08:05:09 +00:00
|
|
|
|
, xdg-utils
|
2020-01-13 13:28:24 +00:00
|
|
|
|
, removeReferencesTo
|
2021-07-31 19:33:49 +01:00
|
|
|
|
, libstemmer
|
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";
|
2022-01-02 17:50:56 +00:00
|
|
|
|
version = "5.34.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";
|
2022-01-02 17:50:56 +00:00
|
|
|
|
hash = "sha256-1NQB7vrcU0hR308/8keUn/rHhdvJk5Ab0pOMPyiU1+M=";
|
2010-01-07 22:47:30 +00:00
|
|
|
|
};
|
|
|
|
|
|
2022-01-02 17:50:56 +00:00
|
|
|
|
# https://sources.debian.org/patches/calibre/${version}+dfsg-1
|
2016-01-05 20:35:08 +00:00
|
|
|
|
patches = [
|
2021-10-18 19:08:51 +01:00
|
|
|
|
# allow for plugin update check, but no calibre version check
|
|
|
|
|
(fetchpatch {
|
2021-11-10 22:14:04 +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-02 17:50:56 +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-18 19:08:51 +01:00
|
|
|
|
})
|
2021-02-14 20:02:54 +00:00
|
|
|
|
]
|
|
|
|
|
++ lib.optional (!unrarSupport) ./dont_build_unrar_plugin.patch;
|
2016-01-02 17:52:57 +00:00
|
|
|
|
|
|
|
|
|
prePatch = ''
|
2021-05-17 14:51:05 +01:00
|
|
|
|
sed -i "s@\[tool.sip.project\]@[tool.sip.project]\nsip-include-dirs = [\"${python3Packages.pyqt5}/${python3Packages.python.sitePackages}/PyQt5/bindings\"]@g" \
|
2021-01-13 20:39:14 +00:00
|
|
|
|
setup/build.py
|
2021-05-03 12:46:31 +01:00
|
|
|
|
sed -i "s/\[tool.sip.bindings.pictureflow\]/[tool.sip.bindings.pictureflow]\ntags = [\"${python3Packages.sip.platform_tag}\"]/g" \
|
2021-01-13 20:39:14 +00:00
|
|
|
|
setup/build.py
|
2016-09-07 03:32:06 +01:00
|
|
|
|
|
|
|
|
|
# Remove unneeded files and libs
|
2021-02-14 20:02:54 +00:00
|
|
|
|
rm -rf src/odf resources/calibre-portable.*
|
2013-08-25 08:49:20 +01:00
|
|
|
|
'';
|
|
|
|
|
|
2016-04-25 19:37:47 +01:00
|
|
|
|
dontUseQmakeConfigure = true;
|
|
|
|
|
|
2021-01-17 02:09:27 +00:00
|
|
|
|
nativeBuildInputs = [ pkg-config qmake removeReferencesTo ];
|
2019-09-28 13:47:41 +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
|
2021-07-31 19:33:49 +01:00
|
|
|
|
libstemmer
|
2020-09-06 03:14:02 +01:00
|
|
|
|
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
|
2021-02-01 08:05:09 +00:00
|
|
|
|
xdg-utils
|
2020-01-13 13:28:24 +00:00
|
|
|
|
] ++ (
|
2021-01-13 20:39:14 +00:00
|
|
|
|
with python3Packages; [
|
2021-07-31 19:33:49 +01:00
|
|
|
|
(apsw.overrideAttrs (oldAttrs: rec {
|
|
|
|
|
setupPyBuildFlags = [ "--enable=load_extension" ];
|
|
|
|
|
}))
|
2020-09-06 03:14:02 +01:00
|
|
|
|
beautifulsoup4
|
2021-03-28 19:58:47 +01:00
|
|
|
|
cchardet
|
2020-01-13 13:28:24 +00:00
|
|
|
|
css-parser
|
2020-09-06 03:14:02 +01:00
|
|
|
|
cssselect
|
2021-07-03 12:37:24 +01:00
|
|
|
|
python-dateutil
|
2020-01-13 13:28:24 +00:00
|
|
|
|
dnspython
|
|
|
|
|
feedparser
|
2020-09-06 03:14:02 +01:00
|
|
|
|
html2text
|
2020-01-13 13:28:24 +00:00
|
|
|
|
html5-parser
|
2021-08-13 21:19:56 +01:00
|
|
|
|
jeepney
|
2020-01-13 13:28:24 +00:00
|
|
|
|
lxml
|
|
|
|
|
markdown
|
2020-09-06 03:14:02 +01:00
|
|
|
|
mechanize
|
|
|
|
|
msgpack
|
2020-01-13 13:28:24 +00:00
|
|
|
|
netifaces
|
|
|
|
|
pillow
|
2021-01-13 20:39:14 +00:00
|
|
|
|
pyqt-builder
|
2020-02-10 06:26:32 +00:00
|
|
|
|
pyqt5
|
|
|
|
|
pyqtwebengine
|
2020-09-06 03:14:02 +01:00
|
|
|
|
python
|
|
|
|
|
regex
|
2021-05-03 12:46:31 +01:00
|
|
|
|
sip
|
2022-01-07 01:25:55 +00:00
|
|
|
|
setuptools
|
2021-07-31 19:33:49 +01:00
|
|
|
|
zeroconf
|
2021-08-09 00:03:45 +01:00
|
|
|
|
jeepney
|
2022-01-13 14:44:03 +00:00
|
|
|
|
pycryptodome
|
2020-01-13 13:28:24 +00:00
|
|
|
|
# the following are distributed with calibre, but we use upstream instead
|
|
|
|
|
odfpy
|
2020-09-22 00:24:50 +01:00
|
|
|
|
] ++ lib.optional (unrarSupport) unrardll
|
2020-01-13 13:28:24 +00:00
|
|
|
|
);
|
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-04-02 12:40:18 +01:00
|
|
|
|
export XDG_DATA_HOME=$out/share
|
|
|
|
|
export XDG_UTILS_INSTALL_MODE="user"
|
|
|
|
|
|
2021-01-13 20:39:14 +00:00
|
|
|
|
${python3Packages.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} \
|
2021-01-13 20:39:14 +00:00
|
|
|
|
$out/lib/calibre/calibre/plugins/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; {
|
|
|
|
|
homepage = "https://calibre-ebook.com";
|
2021-02-14 20:02: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-03 10:50:26 +00:00
|
|
|
|
maintainers = with maintainers; [ pSub AndersonTorres ];
|
2013-07-26 12:18:08 +01:00
|
|
|
|
platforms = platforms.linux;
|
2010-01-07 22:47:30 +00:00
|
|
|
|
};
|
|
|
|
|
}
|