2021-01-15 10:19:50 +01:00
|
|
|
{lib, stdenv, fetchzip, libtommath}:
|
2008-08-12 21:57:35 +02:00
|
|
|
|
2021-08-02 11:12:13 +02:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "convertlit";
|
|
|
|
version = "1.8";
|
2016-08-03 22:04:28 +02:00
|
|
|
|
|
|
|
src = fetchzip {
|
2021-08-02 11:12:13 +02:00
|
|
|
url = "http://www.convertlit.com/convertlit${lib.replaceStrings ["."] [""] version}src.zip";
|
2016-08-03 22:04:28 +02:00
|
|
|
sha256 = "182nsin7qscgbw2h92m0zadh3h8q410h5cza6v486yjfvla3dxjx";
|
|
|
|
stripRoot = false;
|
2008-08-12 21:57:35 +02:00
|
|
|
};
|
|
|
|
|
2016-08-03 22:04:28 +02:00
|
|
|
buildInputs = [libtommath];
|
2008-08-12 21:57:35 +02:00
|
|
|
|
2016-08-03 22:04:28 +02:00
|
|
|
hardeningDisable = [ "format" ];
|
2008-08-12 21:57:35 +02:00
|
|
|
|
|
|
|
buildPhase = ''
|
|
|
|
cd lib
|
|
|
|
make
|
|
|
|
cd ../clit18
|
2016-08-03 22:04:28 +02:00
|
|
|
substituteInPlace Makefile \
|
|
|
|
--replace ../libtommath-0.30/libtommath.a -ltommath
|
2008-08-12 21:57:35 +02:00
|
|
|
make
|
|
|
|
'';
|
|
|
|
|
|
|
|
installPhase = ''
|
2012-01-18 21:16:00 +01:00
|
|
|
mkdir -p $out/bin
|
2008-08-12 21:57:35 +02:00
|
|
|
cp clit $out/bin
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "http://www.convertlit.com/";
|
2008-08-12 21:57:35 +02:00
|
|
|
description = "A tool for converting Microsoft Reader ebooks to more open formats";
|
2021-01-15 10:19:50 +01:00
|
|
|
license = lib.licenses.gpl2;
|
|
|
|
platforms = lib.platforms.linux;
|
2008-08-12 21:57:35 +02:00
|
|
|
};
|
|
|
|
}
|