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