2021-01-21 18:00:13 +01:00
|
|
|
{ lib, stdenv, fetchurl, gperf, pkg-config, librevenge, libxml2, boost, icu
|
2018-05-02 00:22:42 +02:00
|
|
|
, cppunit, zlib, liblangtag
|
2015-05-12 10:38:15 +02:00
|
|
|
}:
|
|
|
|
|
2014-06-27 14:06:41 +02:00
|
|
|
let
|
|
|
|
s = # Generated upstream information
|
|
|
|
rec {
|
|
|
|
baseName="libe-book";
|
2018-05-02 00:22:42 +02:00
|
|
|
version="0.1.3";
|
2014-06-27 14:06:41 +02:00
|
|
|
name="${baseName}-${version}";
|
2018-05-02 00:22:42 +02:00
|
|
|
hash="1yg1vws1wggzhjw672bpgh2x541g5i9wryf67g51m0r79zrqz3by";
|
|
|
|
url="https://kent.dl.sourceforge.net/project/libebook/libe-book-0.1.3/libe-book-0.1.3.tar.xz";
|
|
|
|
sha256="1yg1vws1wggzhjw672bpgh2x541g5i9wryf67g51m0r79zrqz3by";
|
2014-06-27 14:06:41 +02:00
|
|
|
};
|
2017-09-14 21:24:37 +02:00
|
|
|
|
2021-01-19 07:50:56 +01:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2014-06-27 14:06:41 +02:00
|
|
|
buildInputs = [
|
2018-05-02 00:22:42 +02:00
|
|
|
gperf librevenge libxml2 boost icu cppunit zlib liblangtag
|
2014-06-27 14:06:41 +02:00
|
|
|
];
|
2015-09-03 23:09:08 +02:00
|
|
|
|
|
|
|
# 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
|
|
|
|
'';
|
2014-06-27 14:06:41 +02:00
|
|
|
in
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
inherit (s) name version;
|
2017-09-14 21:24:37 +02:00
|
|
|
inherit nativeBuildInputs buildInputs postPatch;
|
2014-06-27 14:06:41 +02:00
|
|
|
src = fetchurl {
|
|
|
|
inherit (s) url sha256;
|
|
|
|
};
|
2017-01-19 02:18:03 +01:00
|
|
|
NIX_CFLAGS_COMPILE = "-Wno-error=unused-function";
|
2014-06-27 14:06:41 +02:00
|
|
|
meta = {
|
|
|
|
inherit (s) version;
|
2021-01-24 10:19:10 +01:00
|
|
|
description = "Library for import of reflowable e-book formats";
|
2021-01-21 18:00:13 +01:00
|
|
|
license = lib.licenses.lgpl21Plus ;
|
|
|
|
maintainers = [lib.maintainers.raskin];
|
|
|
|
platforms = lib.platforms.unix;
|
2014-06-27 14:06:41 +02:00
|
|
|
};
|
|
|
|
}
|