35 lines
686 B
Nix
35 lines
686 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
boost,
|
|
pkg-config,
|
|
librevenge,
|
|
zlib,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libwps";
|
|
version = "0.4.14";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/libwps/${pname}-${version}.tar.bz2";
|
|
sha256 = "sha256-xVEdlAngO446F50EZcHMKW7aBvyDcTVu9Egs2oaIadE=";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
buildInputs = [
|
|
boost
|
|
librevenge
|
|
zlib
|
|
];
|
|
|
|
env.NIX_CFLAGS_COMPILE = "-Wno-error=implicit-fallthrough";
|
|
|
|
meta = with lib; {
|
|
homepage = "https://libwps.sourceforge.net/";
|
|
description = "Microsoft Works document format import filter library";
|
|
platforms = platforms.unix;
|
|
license = licenses.lgpl21;
|
|
};
|
|
}
|