clucene: add license

This commit is contained in:
Markus Kowalewski 2018-09-30 11:19:50 +02:00
parent e978d7a9f2
commit c964f4fc26
No known key found for this signature in database
GPG Key ID: D865C8A91D7025EB
2 changed files with 6 additions and 4 deletions

View File

@ -28,7 +28,7 @@ stdenv.mkDerivation rec {
doCheck = false; # fails with "Unable to find executable: /build/clucene-core-2.3.3.4/build/bin/cl_test"
meta = {
meta = with stdenv.lib; {
description = "Core library for full-featured text search engine";
longDescription = ''
CLucene is a high-performance, scalable, cross platform, full-featured,
@ -41,6 +41,7 @@ stdenv.mkDerivation rec {
CLucene is a port of the very popular Java Lucene text search engine API.
'';
homepage = http://clucene.sourceforge.net;
platforms = stdenv.lib.platforms.unix;
platforms = platforms.unix;
license = with licenses; [ asl20 lgpl2 ];
};
}

View File

@ -10,7 +10,7 @@ stdenv.mkDerivation rec {
patches = [ ./gcc6.patch ];
meta = {
meta = with stdenv.lib; {
description = "Core library for full-featured text search engine";
longDescription = ''
CLucene is a high-performance, scalable, cross platform, full-featured,
@ -23,6 +23,7 @@ stdenv.mkDerivation rec {
CLucene is a port of the very popular Java Lucene text search engine API.
'';
homepage = http://clucene.sourceforge.net;
platforms = stdenv.lib.platforms.linux;
platforms = platforms.linux;
license = with licenses; [ asl20 lgpl2 ];
};
}