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

70 lines
2.4 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, python, pyqt5, sip_4_16, poppler_utils, pkgconfig, libpng
2015-12-20 02:28:02 +00:00
, imagemagick, libjpeg, fontconfig, podofo, qtbase, icu, sqlite
2015-12-08 14:12:53 +00:00
, makeWrapper, unrar, chmlib, pythonPackages, xz, libusb1, libmtp
2014-08-23 10:03:03 +00:00
, xdg_utils
}:
stdenv.mkDerivation rec {
2015-12-11 18:51:28 +00:00
version = "2.46.0";
2015-11-27 09:10:04 +00:00
name = "calibre-${version}";
src = fetchurl {
2015-11-27 09:10:04 +00:00
url = "http://download.calibre-ebook.com/${version}/${name}.tar.xz";
2015-12-11 18:51:28 +00:00
sha256 = "0ig1pb62w57l6nhwg391mkjhw9dyicix6xigpdyw0320jdw9nlkb";
};
inherit python;
patchPhase = ''
2014-08-23 10:03:03 +00:00
sed -i "/pyqt_sip_dir/ s:=.*:= '${pyqt5}/share/sip':" \
setup/build_environment.py
'';
2014-08-23 10:03:03 +00:00
nativeBuildInputs = [ makeWrapper pkgconfig ];
buildInputs =
[ python pyqt5 sip_4_16 poppler_utils libpng imagemagick libjpeg
2015-12-20 02:28:02 +00:00
fontconfig podofo qtbase chmlib icu sqlite libusb1 libmtp xdg_utils
pythonPackages.mechanize pythonPackages.lxml pythonPackages.dateutil
pythonPackages.cssutils pythonPackages.beautifulsoup pythonPackages.pillow
pythonPackages.sqlite3 pythonPackages.netifaces pythonPackages.apsw
pythonPackages.cssselect
];
installPhase = ''
export HOME=$TMPDIR/fakehome
export POPPLER_INC_DIR=${poppler_utils}/include/poppler
export POPPLER_LIB_DIR=${poppler_utils}/lib
export MAGICK_INC=${imagemagick}/include/ImageMagick
export MAGICK_LIB=${imagemagick}/lib
export FC_INC_DIR=${fontconfig}/include/fontconfig
export FC_LIB_DIR=${fontconfig}/lib
export PODOFO_INC_DIR=${podofo}/include/podofo
export PODOFO_LIB_DIR=${podofo}/lib
2014-08-23 10:03:03 +00:00
export SIP_BIN=${sip_4_16}/bin/sip
python setup.py install --prefix=$out
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 10:03:03 +00:00
sed -i "2i import sys; sys.argv[0] = 'calibre'" $out/bin/calibre
for a in $out/bin/*; do
2014-08-23 10:03:03 +00:00
wrapProgram $a --prefix PYTHONPATH : $PYTHONPATH \
--prefix LD_LIBRARY_PATH : ${unrar}/lib \
--prefix PATH : ${poppler_utils}/bin
done
'';
meta = with stdenv.lib; {
description = "Comprehensive e-book software";
homepage = http://calibre-ebook.com;
license = licenses.gpl3;
2015-11-06 09:40:05 +00:00
maintainers = with maintainers; [ viric iElectric pSub AndersonTorres ];
platforms = platforms.linux;
2015-11-27 09:10:04 +00:00
inherit version;
};
}