about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/libe-book/default.nix
blob: f066e470568bb8afa223cdeb97e705d073590df5 (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
39
40
41
42
43
44
45
46
47
48
49
50
51
{ lib
, stdenv
, fetchurl
, gperf
, pkg-config
, librevenge
, libxml2
, boost
, icu
, cppunit
, zlib
, liblangtag
}:

stdenv.mkDerivation rec {
  pname = "libe-book";
  version = "0.1.3";

  src = fetchurl {
    url = "mirror://sourceforge/libebook/libe-book-${version}/libe-book-${version}.tar.xz";
    hash = "sha256-fo2P808ngxrKO8b5zFMsL5DSBXx3iWO4hP89HjTf4fk=";
  };

  # restore compatibility with icu68+
  postPatch = ''
    substituteInPlace src/lib/EBOOKCharsetConverter.cpp --replace \
      "TRUE, TRUE, &status)" \
      "true, true, &status)"
  '';
  nativeBuildInputs = [ pkg-config ];

  buildInputs = [
    gperf
    librevenge
    libxml2
    boost
    icu
    cppunit
    zlib
    liblangtag
  ];

  env.NIX_CFLAGS_COMPILE = "-Wno-error=unused-function";

  meta = with lib; {
    description = "Library for import of reflowable e-book formats";
    license = licenses.lgpl21Plus;
    maintainers = with maintainers; [ raskin ];
    platforms = platforms.unix;
  };
}