2008-08-12 21:57:35 +02:00
|
|
|
{stdenv, fetchurl, unzip, libtommath}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "convertlit-1.8";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = http://www.convertlit.com/convertlit18src.zip;
|
|
|
|
sha256 = "1fjpwncyc2r3ipav7c9m7jxy6i7mphbyqj3gsm046425p7sqa2np";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [unzip libtommath];
|
|
|
|
|
2008-08-27 16:56:59 +02:00
|
|
|
sourceRoot = ".";
|
2008-08-12 21:57:35 +02:00
|
|
|
|
|
|
|
buildPhase = ''
|
|
|
|
cd lib
|
|
|
|
make
|
|
|
|
cd ../clit18
|
|
|
|
substituteInPlace Makefile --replace ../libtommath-0.30/libtommath.a -ltommath
|
|
|
|
make
|
|
|
|
'';
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
ensureDir $out/bin
|
|
|
|
cp clit $out/bin
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://www.convertlit.com/;
|
|
|
|
description = "A tool for converting Microsoft Reader ebooks to more open formats";
|
|
|
|
license = "GPL";
|
|
|
|
};
|
|
|
|
}
|