nixpkgs/pkgs/development/libraries/libwps/default.nix
2023-02-25 10:51:14 +02:00

24 lines
657 B
Nix

{ lib, stdenv, fetchurl, boost, pkg-config, librevenge, zlib }:
stdenv.mkDerivation rec {
pname = "libwps";
version = "0.4.13";
src = fetchurl {
url = "mirror://sourceforge/libwps/${pname}-${version}.tar.bz2";
sha256 = "sha256-eVwva90EwLZgrMpRTcc2cAc9PG5wbXbV2GtK2BMpLrk=";
};
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;
};
}