Commit ce042ea8 authored by Jonathan del Strother's avatar Jonathan del Strother
Browse files

manticoresearch: support indexing mysql sources

parent 7df97cb5
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -58,12 +58,16 @@ stdenv.mkDerivation rec {

  cmakeFlags = [
    "-DWITH_GALERA=0"
    "-DWITH_MYSQL=1"
    "-DMYSQL_INCLUDE_DIR=${mariadb-connector-c.dev}/include/mariadb"
    "-DMYSQL_LIB=${mariadb-connector-c.out}/lib/mariadb/libmysqlclient.a"
  ];

  meta = with lib; {
    description = "Easy to use open source fast database for search";
    homepage = "https://manticoresearch.com";
    license = licenses.gpl2;
    mainProgram = "searchd";
    maintainers = with maintainers; [ jdelStrother ];
    platforms = platforms.all;
  };