mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 21:50:55 +00:00
haproxy: build on darwin
This commit is contained in:
parent
eba71df6bc
commit
ce03c08567
|
@ -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;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue