about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/text/convertlit/default.nix
blob: 23112e83b8c88782dfd19554f580656a390c1bc2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{lib, stdenv, fetchzip, libtommath}:

stdenv.mkDerivation rec {
  pname = "convertlit";
  version = "1.8";

  src = fetchzip {
    url = "http://www.convertlit.com/convertlit${lib.replaceStrings ["."] [""] version}src.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";
    mainProgram = "clit";
    license = lib.licenses.gpl2;
    platforms = lib.platforms.linux;
  };
}