mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 04:43:09 +03:00
clucene: add license
This commit is contained in:
parent
e978d7a9f2
commit
c964f4fc26
@ -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"
|
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";
|
description = "Core library for full-featured text search engine";
|
||||||
longDescription = ''
|
longDescription = ''
|
||||||
CLucene is a high-performance, scalable, cross platform, full-featured,
|
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.
|
CLucene is a port of the very popular Java Lucene text search engine API.
|
||||||
'';
|
'';
|
||||||
homepage = http://clucene.sourceforge.net;
|
homepage = http://clucene.sourceforge.net;
|
||||||
platforms = stdenv.lib.platforms.unix;
|
platforms = platforms.unix;
|
||||||
|
license = with licenses; [ asl20 lgpl2 ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -10,7 +10,7 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
patches = [ ./gcc6.patch ];
|
patches = [ ./gcc6.patch ];
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
description = "Core library for full-featured text search engine";
|
description = "Core library for full-featured text search engine";
|
||||||
longDescription = ''
|
longDescription = ''
|
||||||
CLucene is a high-performance, scalable, cross platform, full-featured,
|
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.
|
CLucene is a port of the very popular Java Lucene text search engine API.
|
||||||
'';
|
'';
|
||||||
homepage = http://clucene.sourceforge.net;
|
homepage = http://clucene.sourceforge.net;
|
||||||
platforms = stdenv.lib.platforms.linux;
|
platforms = platforms.linux;
|
||||||
|
license = with licenses; [ asl20 lgpl2 ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user