depot/third_party/nixpkgs/pkgs/servers/search/sphinxsearch/default.nix
Default email 159e378cbb Project import generated by Copybara.
GitOrigin-RevId: c04d5652cfa9742b1d519688f65d1bbccea9eb7e
2024-09-19 17:19:46 +03:00

43 lines
985 B
Nix

{ lib, stdenv, fetchurl, pkg-config, expat, libmysqlclient,
enableXmlpipe2 ? false,
enableMysql ? true
}:
stdenv.mkDerivation rec {
pname = "sphinxsearch";
version = "2.2.11";
src = fetchurl {
url = "http://sphinxsearch.com/files/sphinx-${version}-release.tar.gz";
sha256 = "1aa1mh32y019j8s3sjzn4vwi0xn83dwgl685jnbgh51k16gh6qk6";
};
enableParallelBuilding = true;
configureFlags = [
"--program-prefix=sphinxsearch-"
"--enable-id64"
] ++ lib.optionals (!enableMysql) [
"--without-mysql"
];
nativeBuildInputs = [
pkg-config
];
buildInputs = lib.optionals enableMysql [
libmysqlclient
] ++ lib.optionals enableXmlpipe2 [
expat
];
CXXFLAGS = "-std=c++98";
meta = {
description = "Open source full text search server";
homepage = "http://sphinxsearch.com";
license = lib.licenses.gpl2Plus;
platforms = lib.platforms.all;
maintainers = with lib.maintainers; [ ederoyd46 valodim ];
};
}