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