3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #65125 from marsam/enable-groonga-darwin

groonga: enable on darwin
This commit is contained in:
Mario Rodas 2019-07-20 18:33:03 -05:00 committed by GitHub
commit 4a8181d035
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 2 deletions

View file

@ -32,7 +32,7 @@ stdenv.mkDerivation rec {
description = "An open-source fulltext search engine and column store";
license = licenses.lgpl21;
maintainers = [ maintainers.ericsagnes ];
platforms = platforms.linux;
platforms = platforms.unix;
longDescription = ''
Groonga is an open-source fulltext search engine and column store.
It lets you write high-performance applications that requires fulltext search.

View file

@ -12,6 +12,8 @@ stdenv.mkDerivation rec {
patches = [ ./gcc-O3.patch ];
NIX_CFLAGS_COMPILE = stdenv.lib.optionalString stdenv.cc.isClang "-Wno-error=c++11-narrowing";
meta = with stdenv.lib; {
homepage = http://www.phontron.com/kytea/;
description = "General toolkit developed for analyzing text";
@ -24,7 +26,7 @@ stdenv.mkDerivation rec {
license = licenses.asl20;
maintainers = with maintainers; [ ericsagnes ndowens ];
platforms = platforms.linux;
platforms = platforms.unix;
};
}