2015-09-13 13:24:02 +01:00
|
|
|
{ stdenv, fetchurl, boost, pkgconfig, librevenge, zlib }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "libwps-${version}";
|
2018-08-19 21:58:29 +01:00
|
|
|
version = "0.4.10";
|
2015-09-13 13:24:02 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2016-05-24 21:25:02 +01:00
|
|
|
url = "mirror://sourceforge/libwps/${name}.tar.bz2";
|
2018-08-19 21:58:29 +01:00
|
|
|
sha256 = "1adx2wawl0i16p8df80m6k6a137h709ip4zc0zlzr6wal8gpn0i4";
|
2015-09-13 13:24:02 +01:00
|
|
|
};
|
|
|
|
|
2017-09-05 22:26:13 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ boost librevenge zlib ];
|
2015-09-13 13:24:02 +01:00
|
|
|
|
2018-02-10 11:06:02 +00:00
|
|
|
NIX_CFLAGS_COMPILE = [ "-Wno-error=implicit-fallthrough" ]; # newly detected by gcc-7
|
|
|
|
|
2015-09-13 13:24:02 +01:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = http://libwps.sourceforge.net/;
|
2016-05-24 21:25:02 +01:00
|
|
|
description = "Microsoft Works document format import filter library";
|
2015-09-13 13:24:02 +01:00
|
|
|
platforms = platforms.linux;
|
|
|
|
license = licenses.lgpl21;
|
|
|
|
};
|
|
|
|
}
|