about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/libe-book/default.nix
blob: f467a01ea7ab57b46a759b3ac370318ffead7294 (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
{ lib, stdenv, fetchurl, gperf, pkg-config, librevenge, libxml2, boost, icu
, cppunit, zlib, liblangtag
}:

let
  s = # Generated upstream information
  rec {
    baseName="libe-book";
    version="0.1.3";
    name="${baseName}-${version}";
    hash="1yg1vws1wggzhjw672bpgh2x541g5i9wryf67g51m0r79zrqz3by";
    url="https://kent.dl.sourceforge.net/project/libebook/libe-book-0.1.3/libe-book-0.1.3.tar.xz";
    sha256="1yg1vws1wggzhjw672bpgh2x541g5i9wryf67g51m0r79zrqz3by";
  };

  nativeBuildInputs = [ pkg-config ];
  buildInputs = [
    gperf librevenge libxml2 boost icu cppunit zlib liblangtag
  ];

  # Boost 1.59 compatability fix
  # Attempt removing when updating
  postPatch = ''
    sed -i 's,^CPPFLAGS.*,\0 -DBOOST_ERROR_CODE_HEADER_ONLY -DBOOST_SYSTEM_NO_DEPRECATED,' src/lib/Makefile.in
  '';
in
stdenv.mkDerivation {
  inherit (s) name version;
  inherit nativeBuildInputs buildInputs postPatch;
  src = fetchurl {
    inherit (s) url sha256;
  };
  NIX_CFLAGS_COMPILE = "-Wno-error=unused-function";
  meta = {
    inherit (s) version;
    description = "Library for import of reflowable e-book formats";
    license = lib.licenses.lgpl21Plus ;
    maintainers = [lib.maintainers.raskin];
    platforms = lib.platforms.unix;
  };
}