2020-01-13 13:28:24 +00:00
|
|
|
|
{ lib
|
|
|
|
|
, mkDerivation
|
|
|
|
|
, fetchurl
|
2021-10-18 18:08:51 +00: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 18:33:49 +00:00
|
|
|
|
, libstemmer
|
2010-03-23 14:04:47 +00:00
|
|
|
|
}:
|
2010-01-07 22:47:30 +00:00
|
|
|
|
|
2019-08-11 14:42:47 +00:00
|
|
|
|
mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
|
pname = "calibre";
|
2021-10-25 22:15:36 +00:00
|
|
|
|
version = "5.30.0";
|
2010-01-07 22:47:30 +00:00
|
|
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 12:41:18 +00:00
|
|
|
|
url = "https://download.calibre-ebook.com/${version}/${pname}-${version}.tar.xz";
|
2021-10-26 03:34:26 +00:00
|
|
|
|
sha256 = "058dqqxhc3pl4is1idlnc3pz80k4r681d5aj4a26v9acp8j7zy4f";
|
2010-01-07 22:47:30 +00:00
|
|
|
|
};
|
|
|
|
|
|
2021-10-25 22:15:36 +00:00
|
|
|
|
# https://sources.debian.org/patches/calibre/5.30.0+dfsg-1
|
2016-01-05 20:35:08 +00:00
|
|
|
|
patches = [
|
2021-10-18 18:08:51 +00:00
|
|
|
|
# allow for plugin update check, but no calibre version check
|
|
|
|
|
(fetchpatch {
|
|
|
|
|
name = "0001_only_plugin_update.patch";
|
2021-10-25 22:15:36 +00:00
|
|
|
|
url =
|
|
|
|
|
"https://sources.debian.org/data/main/c/calibre/${version}%2Bdfsg-1/debian/patches/0001-only-plugin-update.patch";
|
2021-10-18 18:08:51 +00:00
|
|
|
|
sha256 = "sha256-aGT8rJ/eQKAkmyHBWdY0ouZuWvDwtLVJU5xY6d3hY3k=";
|
|
|
|
|
})
|
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 13:51:05 +00: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 11:46:31 +00: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 02:32:06 +00:00
|
|
|
|
|
|
|
|
|
# Remove unneeded files and libs
|
2021-02-14 20:02:54 +00:00
|
|
|
|
rm -rf src/odf resources/calibre-portable.*
|
2013-08-25 07:49:20 +00:00
|
|
|
|
'';
|
|
|
|
|
|
2016-04-25 18:37:47 +00:00
|
|
|
|
dontUseQmakeConfigure = true;
|
|
|
|
|
|
2021-01-17 02:09:27 +00:00
|
|
|
|
nativeBuildInputs = [ pkg-config qmake removeReferencesTo ];
|
2019-09-28 12:47:41 +00:00
|
|
|
|
|
2016-09-07 02:32:06 +00:00
|
|
|
|
buildInputs = [
|
2020-09-06 02:14:02 +00:00
|
|
|
|
chmlib
|
|
|
|
|
fontconfig
|
|
|
|
|
hunspell
|
|
|
|
|
hyphen
|
|
|
|
|
icu
|
2020-01-13 13:28:24 +00:00
|
|
|
|
imagemagick
|
|
|
|
|
libjpeg
|
2020-09-06 02:14:02 +00:00
|
|
|
|
libmtp
|
|
|
|
|
libpng
|
2021-07-31 18:33:49 +00:00
|
|
|
|
libstemmer
|
2020-09-06 02:14:02 +00:00
|
|
|
|
libusb1
|
2020-01-13 13:28:24 +00:00
|
|
|
|
podofo
|
2020-09-06 02:14:02 +00: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 18:33:49 +00:00
|
|
|
|
(apsw.overrideAttrs (oldAttrs: rec {
|
|
|
|
|
setupPyBuildFlags = [ "--enable=load_extension" ];
|
|
|
|
|
}))
|
2020-09-06 02:14:02 +00:00
|
|
|
|
beautifulsoup4
|
2021-03-28 18:58:47 +00:00
|
|
|
|
cchardet
|
2020-01-13 13:28:24 +00:00
|
|
|
|
css-parser
|
2020-09-06 02:14:02 +00:00
|
|
|
|
cssselect
|
2021-07-03 11:37:24 +00:00
|
|
|
|
python-dateutil
|
2020-01-13 13:28:24 +00:00
|
|
|
|
dnspython
|
|
|
|
|
feedparser
|
2020-09-06 02:14:02 +00:00
|
|
|
|
html2text
|
2020-01-13 13:28:24 +00:00
|
|
|
|
html5-parser
|
2021-08-13 20:19:56 +00:00
|
|
|
|
jeepney
|
2020-01-13 13:28:24 +00:00
|
|
|
|
lxml
|
|
|
|
|
markdown
|
2020-09-06 02:14:02 +00: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 02:14:02 +00:00
|
|
|
|
python
|
|
|
|
|
regex
|
2021-05-03 11:46:31 +00:00
|
|
|
|
sip
|
2021-07-31 18:33:49 +00:00
|
|
|
|
zeroconf
|
2021-08-08 23:03:45 +00:00
|
|
|
|
jeepney
|
2020-01-13 13:28:24 +00:00
|
|
|
|
# the following are distributed with calibre, but we use upstream instead
|
|
|
|
|
odfpy
|
2020-09-21 23:24:50 +00: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 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
|
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 11:40:18 +00: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 11:40:18 +00: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 10:03:03 +00:00
|
|
|
|
sed -i "2i import sys; sys.argv[0] = 'calibre'" $out/bin/calibre
|
|
|
|
|
|
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
|
|
|
|
'';
|
|
|
|
|
|
2019-08-11 14:42:47 +00: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 02:14:02 +00: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 12:56:26 +00:00
|
|
|
|
|
2019-08-11 14:42:47 +00:00
|
|
|
|
for program in $out/bin/*; do
|
|
|
|
|
wrapProgram $program \
|
|
|
|
|
''${qtWrapperArgs[@]} \
|
|
|
|
|
''${gappsWrapperArgs[@]} \
|
|
|
|
|
--prefix PYTHONPATH : $PYTHONPATH \
|
|
|
|
|
--prefix PATH : ${poppler_utils.out}/bin
|
|
|
|
|
done
|
2019-07-25 12:56:26 +00:00
|
|
|
|
'';
|
|
|
|
|
|
2018-11-07 05:13:03 +00:00
|
|
|
|
disallowedReferences = [ podofo.dev ];
|
|
|
|
|
|
2019-09-28 12:47:41 +00: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 11:18:08 +00:00
|
|
|
|
platforms = platforms.linux;
|
2010-01-07 22:47:30 +00:00
|
|
|
|
};
|
|
|
|
|
}
|