Merge pull request #23608 from pmahoney/haproxy-darwin

haproxy: build on darwin
This commit is contained in:
Daiderd Jordan 2017-03-07 21:03:29 +01:00 committed by GitHub
commit b05dc8d4bf

View file

@ -14,9 +14,9 @@ stdenv.mkDerivation rec {
buildInputs = [ openssl zlib ];
# TODO: make it work on darwin/bsd as well
# TODO: make it work on bsd as well
preConfigure = ''
export makeFlags="TARGET=${if stdenv.isSunOS then "solaris" else "linux2628"} PREFIX=$out USE_OPENSSL=yes USE_ZLIB=yes"
export makeFlags="TARGET=${if stdenv.isSunOS then "solaris" else if stdenv.isLinux then "linux2628" else "generic"} PREFIX=$out USE_OPENSSL=yes USE_ZLIB=yes ${stdenv.lib.optionalString stdenv.isDarwin "CC=cc USE_KQUEUE=1"}"
'';
meta = {
@ -31,7 +31,7 @@ stdenv.mkDerivation rec {
'';
homepage = http://haproxy.1wt.eu;
maintainers = [ stdenv.lib.maintainers.garbas ];
platforms = stdenv.lib.platforms.linux;
platforms = with stdenv.lib.platforms; linux ++ darwin;
license = stdenv.lib.licenses.gpl2;
};
}