2010-03-23 15:04:47 +01:00
|
|
|
{ stdenv, fetchurl, python, pyqt4, sip, popplerQt4, pkgconfig, libpng
|
|
|
|
, imagemagick, libjpeg, fontconfig, podofo, qt4, mechanize, lxml, dateutil
|
2010-03-23 22:48:38 +01:00
|
|
|
, pil, cssutils, beautifulsoap, makeWrapper, unrar, chmlib
|
2010-03-23 15:04:47 +01:00
|
|
|
}:
|
2010-01-07 23:47:30 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2010-08-20 11:07:35 +02:00
|
|
|
name = "calibre-0.7.14";
|
2010-01-07 23:47:30 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/calibre/${name}.tar.gz";
|
2010-08-20 11:07:35 +02:00
|
|
|
sha256 = "07vnmxxpg77pmd7fhcrlnark02bn6zj62hbsybdqz8fp1yp99wkn";
|
2010-01-07 23:47:30 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
inherit python;
|
|
|
|
|
2010-03-23 15:04:47 +01:00
|
|
|
buildInputs =
|
|
|
|
[ python pyqt4 sip popplerQt4 pkgconfig libpng imagemagick libjpeg
|
|
|
|
fontconfig podofo qt4 mechanize lxml dateutil pil makeWrapper
|
2010-03-23 22:48:38 +01:00
|
|
|
cssutils beautifulsoap chmlib
|
2010-03-23 15:04:47 +01:00
|
|
|
];
|
2010-01-07 23:47:30 +01:00
|
|
|
|
|
|
|
installPhase = ''
|
2010-02-28 23:42:39 +01:00
|
|
|
export HOME=$TMPDIR/fakehome
|
2010-01-07 23:47:30 +01:00
|
|
|
export POPPLER_INC_DIR=${popplerQt4}/include/poppler
|
|
|
|
export POPPLER_LIB_DIR=${popplerQt4}/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
|
|
|
|
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/python/" $PYFILES
|
|
|
|
for a in $out/bin/*; do
|
|
|
|
wrapProgram $a --prefix PYTHONPATH : $PYTHONPATH --prefix LD_LIBRARY_PATH : ${unrar}/lib
|
|
|
|
done
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Comprehensive e-book software";
|
|
|
|
homepage = http://calibre-ebook.com;
|
|
|
|
license = "GPLv3";
|
2010-01-08 21:30:24 +01:00
|
|
|
maintainers = with stdenv.lib.maintainers; [viric];
|
|
|
|
platforms = with stdenv.lib.platforms; linux;
|
2010-01-07 23:47:30 +01:00
|
|
|
};
|
|
|
|
}
|