1 { lib, stdenv, fetchurl, boost, pkg-config, librevenge, zlib }:
3 stdenv.mkDerivation rec {
8 url = "mirror://sourceforge/libwps/${pname}-${version}.tar.bz2";
9 sha256 = "16c6vq6hhi5lcvgyb9dwarr3kz69l1g5fs39b2hwqhkwzx5igpcl";
12 nativeBuildInputs = [ pkg-config ];
13 buildInputs = [ boost librevenge zlib ];
15 NIX_CFLAGS_COMPILE = "-Wno-error=implicit-fallthrough";
18 homepage = "http://libwps.sourceforge.net/";
19 description = "Microsoft Works document format import filter library";
20 platforms = platforms.unix;
21 license = licenses.lgpl21;