mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
50 lines
1.3 KiB
Nix
50 lines
1.3 KiB
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 = with 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 = lib.licenses.gpl2;
|
|
platforms = lib.platforms.all;
|
|
maintainers = with lib.maintainers; [ ederoyd46 valodim ];
|
|
};
|
|
}
|