biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / text / convertlit / default.nix
blob417007fbd3ba9c39e20087b2d0c954961d15b50a
1 {lib, stdenv, fetchzip, libtommath}:
3 stdenv.mkDerivation rec {
4   pname = "convertlit";
5   version = "1.8";
7   src = fetchzip {
8     url = "http://www.convertlit.com/convertlit${lib.replaceStrings ["."] [""] version}src.zip";
9     sha256 = "182nsin7qscgbw2h92m0zadh3h8q410h5cza6v486yjfvla3dxjx";
10     stripRoot = false;
11   };
13   buildInputs = [libtommath];
15   hardeningDisable = [ "format" ];
17   buildPhase = ''
18     cd lib
19     make
20     cd ../clit18
21     substituteInPlace Makefile \
22       --replace ../libtommath-0.30/libtommath.a -ltommath
23     make
24   '';
26   installPhase = ''
27     mkdir -p $out/bin
28     cp clit $out/bin
29   '';
31   meta = {
32     homepage = "http://www.convertlit.com/";
33     description = "Tool for converting Microsoft Reader ebooks to more open formats";
34     mainProgram = "clit";
35     license = lib.licenses.gpl2Plus;
36     platforms = lib.platforms.linux;
37   };