Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / libraries / libwps / default.nix
blobf5af2e8284c863a510041b0ec76f71079fb3cee4
1 { lib, stdenv, fetchurl, boost, pkg-config, librevenge, zlib }:
3 stdenv.mkDerivation rec {
4   pname = "libwps";
5   version = "0.4.14";
7   src = fetchurl {
8     url = "mirror://sourceforge/libwps/${pname}-${version}.tar.bz2";
9     sha256 = "sha256-xVEdlAngO446F50EZcHMKW7aBvyDcTVu9Egs2oaIadE=";
10   };
12   nativeBuildInputs = [ pkg-config ];
13   buildInputs = [ boost librevenge zlib ];
15   env.NIX_CFLAGS_COMPILE = "-Wno-error=implicit-fallthrough";
17   meta = with lib; {
18     homepage = "https://libwps.sourceforge.net/";
19     description = "Microsoft Works document format import filter library";
20     platforms = platforms.unix;
21     license = licenses.lgpl21;
22   };