Merge pull request #3364 from joelteon/mysql-ps

On Darwin, add /bin/ps to path during MySQL build
This commit is contained in:
Jaka Hudoklin 2014-07-26 02:34:10 +02:00
commit b459a93533

View file

@ -11,6 +11,11 @@ stdenv.mkDerivation rec {
md5 = "bf1d80c66d4822ec6036300399a33c03";
};
preConfigure = stdenv.lib.optional stdenv.isDarwin ''
ln -s /bin/ps $TMPDIR/ps
export PATH=$PATH:$TMPDIR
'';
buildInputs = [ cmake bison ncurses openssl readline zlib ]
++ stdenv.lib.optional stdenv.isDarwin perl;