nixpkgs/pkgs/applications/misc/calibre/default.nix

191 lines
5.2 KiB
Nix
Raw Normal View History

2020-01-13 14:28:24 +01:00
{ lib
, mkDerivation
, fetchurl
, fetchpatch
2020-01-13 14:28:24 +01:00
, poppler_utils
, pkg-config
2020-01-13 14:28:24 +01:00
, libpng
, imagemagick
, libjpeg
, fontconfig
, podofo
, qtbase
, qmake
, icu
, sqlite
, hunspell
, hyphen
, unrarSupport ? false
, chmlib
, python3Packages
2020-01-13 14:28:24 +01:00
, libusb1
, libmtp
2021-02-01 09:05:09 +01:00
, xdg-utils
2020-01-13 14:28:24 +01:00
, removeReferencesTo
, libstemmer
}:
mkDerivation rec {
pname = "calibre";
2022-01-02 18:50:56 +01:00
version = "5.34.0";
src = fetchurl {
url = "https://download.calibre-ebook.com/${version}/${pname}-${version}.tar.xz";
2022-01-02 18:50:56 +01:00
hash = "sha256-1NQB7vrcU0hR308/8keUn/rHhdvJk5Ab0pOMPyiU1+M=";
};
2022-01-02 18:50:56 +01:00
# https://sources.debian.org/patches/calibre/${version}+dfsg-1
patches = [
# allow for plugin update check, but no calibre version check
(fetchpatch {
2021-11-10 23:14:04 +01: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 18:50:56 +01: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";
})
]
++ lib.optional (!unrarSupport) ./dont_build_unrar_plugin.patch;
2016-01-02 18:52:57 +01:00
prePatch = ''
2021-05-17 15:51:05 +02:00
sed -i "s@\[tool.sip.project\]@[tool.sip.project]\nsip-include-dirs = [\"${python3Packages.pyqt5}/${python3Packages.python.sitePackages}/PyQt5/bindings\"]@g" \
setup/build.py
2021-05-03 13:46:31 +02:00
sed -i "s/\[tool.sip.bindings.pictureflow\]/[tool.sip.bindings.pictureflow]\ntags = [\"${python3Packages.sip.platform_tag}\"]/g" \
setup/build.py
# Remove unneeded files and libs
rm -rf src/odf resources/calibre-portable.*
'';
dontUseQmakeConfigure = true;
nativeBuildInputs = [ pkg-config qmake removeReferencesTo ];
2019-09-28 14:47:41 +02:00
buildInputs = [
2020-09-06 04:14:02 +02:00
chmlib
fontconfig
hunspell
hyphen
icu
2020-01-13 14:28:24 +01:00
imagemagick
libjpeg
2020-09-06 04:14:02 +02:00
libmtp
libpng
libstemmer
2020-09-06 04:14:02 +02:00
libusb1
2020-01-13 14:28:24 +01:00
podofo
2020-09-06 04:14:02 +02:00
poppler_utils
2020-01-13 14:28:24 +01:00
qtbase
sqlite
2021-02-01 09:05:09 +01:00
xdg-utils
2020-01-13 14:28:24 +01:00
] ++ (
with python3Packages; [
(apsw.overrideAttrs (oldAttrs: rec {
setupPyBuildFlags = [ "--enable=load_extension" ];
}))
2020-09-06 04:14:02 +02:00
beautifulsoup4
2021-03-28 20:58:47 +02:00
cchardet
2020-01-13 14:28:24 +01:00
css-parser
2020-09-06 04:14:02 +02:00
cssselect
python-dateutil
2020-01-13 14:28:24 +01:00
dnspython
feedparser
2020-09-06 04:14:02 +02:00
html2text
2020-01-13 14:28:24 +01:00
html5-parser
jeepney
2020-01-13 14:28:24 +01:00
lxml
markdown
2020-09-06 04:14:02 +02:00
mechanize
msgpack
2020-01-13 14:28:24 +01:00
netifaces
pillow
pyqt-builder
pyqt5
pyqtwebengine
2020-09-06 04:14:02 +02:00
python
regex
2021-05-03 13:46:31 +02:00
sip
setuptools
zeroconf
jeepney
pycryptodome
2020-01-13 14:28:24 +01:00
# the following are distributed with calibre, but we use upstream instead
odfpy
] ++ lib.optional (unrarSupport) unrardll
2020-01-13 14:28:24 +01: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
2018-11-07 06:13:03 +01:00
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"
${python3Packages.python.interpreter} setup.py install --root=$out \
--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
2014-08-23 12:03:03 +02:00
sed -i "2i import sys; sys.argv[0] = 'calibre'" $out/bin/calibre
2017-07-28 17:46:54 +02:00
mkdir -p $out/share
cp -a man-pages $out/share/man
runHook postInstall
'';
# Wrap manually
dontWrapQtApps = true;
dontWrapGApps = true;
2018-11-07 06:13:03 +01: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 04:14:02 +02:00
remove-references-to -t ${podofo.dev} \
$out/lib/calibre/calibre/plugins/podofo.so
for program in $out/bin/*; do
wrapProgram $program \
''${qtWrapperArgs[@]} \
''${gappsWrapperArgs[@]} \
--prefix PYTHONPATH : $PYTHONPATH \
--prefix PATH : ${poppler_utils.out}/bin
done
'';
2018-11-07 06:13:03 +01:00
disallowedReferences = [ podofo.dev ];
2019-09-28 14:47:41 +02:00
meta = with lib; {
homepage = "https://calibre-ebook.com";
description = "Comprehensive e-book software";
longDescription = ''
calibre is a powerful and easy to use e-book manager. Users say its
outstanding and a must-have. Itll allow you to do nearly everything and
it takes things a step beyond normal e-book software. Its also completely
free and open source and great for both casual users and computer experts.
'';
license = with licenses; if unrarSupport then unfreeRedistributable else gpl3Plus;
maintainers = with maintainers; [ pSub AndersonTorres ];
platforms = platforms.linux;
};
}