Merge pull request #80727 from Valodim/sphinxsearch-master

sphinxsearch: Add support for MySQL & xmlpipe2
This commit is contained in:
Jan Tojnar 2020-02-27 17:32:05 +01:00 committed by GitHub
commit 1a4ab0ed4c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,31 +1,49 @@
{ stdenv, fetchurl, pkgconfig,
version ? "2.2.11",
mainSrc ? fetchurl {
url = "http://sphinxsearch.com/files/sphinx-${version}-release.tar.gz";
sha256 = "1aa1mh32y019j8s3sjzn4vwi0xn83dwgl685jnbgh51k16gh6qk6";
}
{ stdenv, fetchurl, pkg-config, expat, libmysqlclient,
enableXmlpipe2 ? false,
enableMysql ? true
}:
stdenv.mkDerivation {
stdenv.mkDerivation rec {
pname = "sphinxsearch";
inherit version;
src = mainSrc;
version = "2.2.11";
src = fetchurl {
url = "http://sphinxsearch.com/files/sphinx-${version}-release.tar.gz";
sha256 = "1aa1mh32y019j8s3sjzn4vwi0xn83dwgl685jnbgh51k16gh6qk6";
};
enableParallelBuilding = true;
configureFlags = [
"--program-prefix=sphinxsearch-"
"--without-mysql"
"--enable-id64"
] ++ stdenv.lib.optionals (!enableMysql) [
"--without-mysql"
];
nativeBuildInputs = [
pkgconfig
pkg-config
];
buildInputs = stdenv.lib.optionals enableMysql [
libmysqlclient
] ++ stdenv.lib.optionals enableXmlpipe2 [
expat
];
CXXFLAGS = with stdenv.lib; concatStringsSep " " (optionals stdenv.isDarwin [
# see upstream bug: http://sphinxsearch.com/bugs/view.php?id=2578
# workaround for "error: invalid suffix on literal
"-Wno-reserved-user-defined-literal"
# workaround for "error: non-constant-expression cannot be narrowed from type 'long' to 'int'"
"-Wno-c++11-narrowing"
]);
meta = {
description = "An open source full text search server";
homepage = http://sphinxsearch.com;
license = stdenv.lib.licenses.gpl2;
platforms = stdenv.lib.platforms.all;
maintainers = with stdenv.lib.maintainers; [ ederoyd46 ];
maintainers = with stdenv.lib.maintainers; [ ederoyd46 valodim ];
};
}