nixpkgs/pkgs/tools/text/convertlit/default.nix
2016-08-03 20:04:28 +00:00

37 lines
789 B
Nix

{stdenv, fetchzip, libtommath}:
stdenv.mkDerivation {
name = "convertlit-1.8";
src = fetchzip {
url = http://www.convertlit.com/convertlit18src.zip;
sha256 = "182nsin7qscgbw2h92m0zadh3h8q410h5cza6v486yjfvla3dxjx";
stripRoot = false;
};
buildInputs = [libtommath];
hardeningDisable = [ "format" ];
buildPhase = ''
cd lib
make
cd ../clit18
substituteInPlace Makefile \
--replace ../libtommath-0.30/libtommath.a -ltommath
make
'';
installPhase = ''
mkdir -p $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 = stdenv.lib.licenses.gpl2;
platforms = stdenv.lib.platforms.linux;
};
}