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