nixpkgs/pkgs/development/libraries/libwpd/default.nix
zowoq 31f5dd3f36 treewide: editorconfig fixes
- remove trailing whitespace
- use spaces for indentation
2021-01-20 09:11:11 +10:00

22 lines
604 B
Nix

{ stdenv, fetchurl, zlib, pkg-config, glib, libgsf, libxml2, librevenge }:
stdenv.mkDerivation rec {
name = "libwpd-0.10.0";
src = fetchurl {
url = "mirror://sourceforge/libwpd/${name}.tar.xz";
sha256 = "0b6krzr6kxzm89g6bapn805kdayq70hn16n5b5wfs2lwrf0ag2wx";
};
buildInputs = [ glib libgsf libxml2 zlib librevenge ];
nativeBuildInputs = [ pkg-config ];
meta = with stdenv.lib; {
description = "A library for importing and exporting WordPerfect documents";
homepage = "http://libwpd.sourceforge.net/";
license = licenses.lgpl21;
platforms = platforms.unix;
};
}