3
0
Fork 0
forked from mirrors/nixpkgs

libwpd: add meta data

This commit is contained in:
Markus Kowalewski 2018-10-23 19:45:54 +02:00
parent abd029abe7
commit 81029a99ee
No known key found for this signature in database
GPG key ID: D865C8A91D7025EB

View file

@ -2,19 +2,22 @@
stdenv.mkDerivation rec {
name = "libwpd-0.8.14";
src = fetchurl {
url = "mirror://sourceforge/libwpd/${name}.tar.gz";
sha256 = "1syli6i5ma10cwzpa61a18pyjmianjwsf6pvmvzsh5md6yk4yx01";
};
patches = [ ./gcc-0.8.patch ];
buildInputs = [ glib libgsf libxml2 ];
nativeBuildInputs = [ pkgconfig bzip2 ];
meta = {
platforms = stdenv.lib.platforms.unix;
meta = with stdenv.lib; {
description = "Library for importing WordPerfect documents";
homepage = http://libwpd.sourceforge.net;
license = with licenses; [ lgpl21 mpl20 ];
platforms = platforms.unix;
};
}