mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 21:50:55 +00:00
sphinxsearch: add optional support for xmlpipe2
This commit is contained in:
parent
f14b3aa8c0
commit
f70dbff529
|
@ -1,4 +1,5 @@
|
|||
{ stdenv, fetchurl, pkg-config, libmysqlclient,
|
||||
{ stdenv, fetchurl, pkg-config, expat, libmysqlclient,
|
||||
enableXmlpipe2 ? false,
|
||||
enableMysql ? true
|
||||
}:
|
||||
|
||||
|
@ -24,6 +25,8 @@ stdenv.mkDerivation rec {
|
|||
|
||||
buildInputs = stdenv.lib.optionals enableMysql [
|
||||
libmysqlclient
|
||||
] ++ stdenv.lib.optionals enableXmlpipe2 [
|
||||
expat
|
||||
];
|
||||
|
||||
meta = {
|
||||
|
|
Loading…
Reference in a new issue