1 {lib, stdenv, fetchzip, libtommath}:
3 stdenv.mkDerivation rec {
8 url = "http://www.convertlit.com/convertlit${lib.replaceStrings ["."] [""] version}src.zip";
9 sha256 = "182nsin7qscgbw2h92m0zadh3h8q410h5cza6v486yjfvla3dxjx";
13 buildInputs = [libtommath];
15 hardeningDisable = [ "format" ];
21 substituteInPlace Makefile \
22 --replace ../libtommath-0.30/libtommath.a -ltommath
32 homepage = "http://www.convertlit.com/";
33 description = "Tool for converting Microsoft Reader ebooks to more open formats";
35 license = lib.licenses.gpl2Plus;
36 platforms = lib.platforms.linux;