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