2015-11-16 17:05:49 +01:00
|
|
|
{ stdenv, pkgs, fetchurl, openssl, zlib }:
|
2012-05-18 09:50:10 +02:00
|
|
|
|
2013-07-03 03:36:15 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2017-01-26 09:37:51 +01:00
|
|
|
pname = "haproxy";
|
|
|
|
majorVersion = "1.7";
|
2017-03-13 23:17:03 +01:00
|
|
|
minorVersion = "3";
|
2017-01-26 09:37:51 +01:00
|
|
|
version = "${majorVersion}.${minorVersion}";
|
|
|
|
name = "${pname}-${version}";
|
2013-10-29 15:55:25 +01:00
|
|
|
|
2012-05-18 09:50:10 +02:00
|
|
|
src = fetchurl {
|
2017-01-26 09:37:51 +01:00
|
|
|
url = "http://www.haproxy.org/download/${majorVersion}/src/${name}.tar.gz";
|
2017-03-13 23:17:03 +01:00
|
|
|
sha256 = "ebb31550a5261091034f1b6ac7f4a8b9d79a8ce2a3ddcd7be5b5eb355c35ba65";
|
2012-05-18 09:50:10 +02:00
|
|
|
};
|
|
|
|
|
2015-11-16 17:05:49 +01:00
|
|
|
buildInputs = [ openssl zlib ];
|
2012-05-18 09:50:10 +02:00
|
|
|
|
2017-03-07 18:50:45 +01:00
|
|
|
# TODO: make it work on bsd as well
|
2017-03-14 21:39:40 +01:00
|
|
|
makeFlags = [
|
|
|
|
"PREFIX=\${out}"
|
|
|
|
("TARGET=" + (if stdenv.isSunOS then "solaris"
|
|
|
|
else if stdenv.isLinux then "linux2628"
|
|
|
|
else if stdenv.isDarwin then "osx"
|
|
|
|
else "generic"))
|
|
|
|
];
|
|
|
|
buildFlags = [
|
|
|
|
"USE_OPENSSL=yes"
|
|
|
|
"USE_ZLIB=yes"
|
|
|
|
] ++ stdenv.lib.optional stdenv.isDarwin "CC=cc";
|
2013-07-03 03:36:15 +02:00
|
|
|
|
2012-05-18 09:50:10 +02:00
|
|
|
meta = {
|
2013-10-06 11:49:53 +02:00
|
|
|
description = "Reliable, high performance TCP/HTTP load balancer";
|
|
|
|
longDescription = ''
|
|
|
|
HAProxy is a free, very fast and reliable solution offering high
|
|
|
|
availability, load balancing, and proxying for TCP and HTTP-based
|
|
|
|
applications. It is particularly suited for web sites crawling under very
|
|
|
|
high loads while needing persistence or Layer7 processing. Supporting
|
|
|
|
tens of thousands of connections is clearly realistic with todays
|
|
|
|
hardware.
|
|
|
|
'';
|
2013-07-03 12:41:27 +02:00
|
|
|
homepage = http://haproxy.1wt.eu;
|
2013-07-03 03:36:15 +02:00
|
|
|
maintainers = [ stdenv.lib.maintainers.garbas ];
|
2017-03-07 18:50:45 +01:00
|
|
|
platforms = with stdenv.lib.platforms; linux ++ darwin;
|
2015-03-26 19:32:37 +01:00
|
|
|
license = stdenv.lib.licenses.gpl2;
|
2012-05-18 09:50:10 +02:00
|
|
|
};
|
|
|
|
}
|