Files
nixpkgs/pkgs/development/libraries/libwpd/default.nix
T

22 lines
604 B
Nix
Raw Normal View History

2014-08-12 01:39:48 +04:00
{ stdenv, fetchurl, zlib, pkgconfig, glib, libgsf, libxml2, librevenge }:
2010-07-28 15:35:01 +00:00
stdenv.mkDerivation rec {
2014-08-12 01:39:48 +04:00
name = "libwpd-0.10.0";
2010-07-28 15:35:01 +00:00
2005-10-26 12:51:33 +00:00
src = fetchurl {
url = "mirror://sourceforge/libwpd/${name}.tar.xz";
2014-08-12 01:39:48 +04:00
sha256 = "0b6krzr6kxzm89g6bapn805kdayq70hn16n5b5wfs2lwrf0ag2wx";
2005-10-26 12:51:33 +00:00
};
2010-07-28 15:35:01 +00:00
2014-08-12 01:39:48 +04:00
buildInputs = [ glib libgsf libxml2 zlib librevenge ];
nativeBuildInputs = [ pkgconfig ];
meta = with stdenv.lib; {
description = "A library for importing and exporting WordPerfect documents";
homepage = http://libwpd.sourceforge.net/;
license = licenses.lgpl21;
2016-08-02 20:50:55 +03:00
platforms = platforms.unix;
};
2005-10-26 12:51:33 +00:00
}