nixpkgs/pkgs/tools/text/convertlit/default.nix

37 lines
784 B
Nix
Raw Normal View History

2021-01-15 09:19:50 +00:00
{lib, stdenv, fetchzip, libtommath}:
stdenv.mkDerivation {
name = "convertlit-1.8";
2016-08-03 20:04:28 +00:00
src = fetchzip {
url = "http://www.convertlit.com/convertlit18src.zip";
2016-08-03 20:04:28 +00:00
sha256 = "182nsin7qscgbw2h92m0zadh3h8q410h5cza6v486yjfvla3dxjx";
stripRoot = false;
};
2016-08-03 20:04:28 +00:00
buildInputs = [libtommath];
2016-08-03 20:04:28 +00:00
hardeningDisable = [ "format" ];
buildPhase = ''
cd lib
make
cd ../clit18
2016-08-03 20:04:28 +00:00
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";
2021-01-15 09:19:50 +00:00
license = lib.licenses.gpl2;
platforms = lib.platforms.linux;
};
}