2021-01-21 18:00:13 +01:00
|
|
|
{ lib, stdenv, fetchurl, boost, doxygen, gperf, pkg-config, librevenge, libxml2, perl }:
|
2015-09-13 14:24:02 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "libabw";
|
2019-09-27 02:00:17 +02:00
|
|
|
version = "0.1.3";
|
2015-09-13 14:24:02 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 14:41:18 +02:00
|
|
|
url = "https://dev-www.libreoffice.org/src/libabw/${pname}-${version}.tar.xz";
|
2019-09-27 02:00:17 +02:00
|
|
|
sha256 = "1vbfrmnvib3cym0yyyabnd8xpx4f7wp20vnn09s6dln347fajqz7";
|
2015-09-13 14:24:02 +02:00
|
|
|
};
|
|
|
|
|
2015-09-16 22:45:54 +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
|
|
|
|
'';
|
|
|
|
|
2021-01-19 07:50:56 +01:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2017-09-05 23:26:13 +02:00
|
|
|
buildInputs = [ boost doxygen gperf librevenge libxml2 perl ];
|
2015-09-13 14:24:02 +02:00
|
|
|
|
2021-01-21 18:00:13 +01:00
|
|
|
meta = with lib; {
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://wiki.documentfoundation.org/DLP/Libraries/libabw";
|
2015-09-13 14:24:02 +02:00
|
|
|
description = "Library parsing abiword documents";
|
2018-11-15 22:25:20 +01:00
|
|
|
platforms = platforms.unix;
|
2015-09-13 14:24:02 +02:00
|
|
|
license = licenses.mpl20;
|
|
|
|
};
|
|
|
|
}
|