Removed mysql dependency as it does not pick up the header files on Linux, even when specified explicitly in the config params.

This commit is contained in:
Matthew Brown 2014-09-04 13:21:28 +01:00
parent 89eccb7fb0
commit 82b4965b08

View file

@ -1,4 +1,4 @@
{ stdenv, fetchurl, pkgconfig, mysql,
{ stdenv, fetchurl, pkgconfig,
version ? "2.1.9",
mainSrc ? fetchurl {
url = "http://sphinxsearch.com/files/sphinx-${version}-release.tar.gz";
@ -12,11 +12,12 @@ stdenv.mkDerivation rec {
configureFlags = [
"--program-prefix=sphinxsearch-"
"--without-mysql"
"--enable-id64"
];
buildInputs = [
buildInputs = [
pkgconfig
mysql
];
meta = {