2016-11-17 05:45:56 -08:00
|
|
|
{stdenv, fetchurl, openssl, bison, flex, pam, zlib, usePAM ? stdenv.isLinux }:
|
2009-08-26 09:22:20 -07:00
|
|
|
|
2014-05-04 00:51:10 -07:00
|
|
|
stdenv.mkDerivation rec {
|
2017-08-04 09:27:20 -07:00
|
|
|
name = "monit-5.23.0";
|
2016-09-24 00:42:42 -07:00
|
|
|
|
2014-05-04 00:51:10 -07:00
|
|
|
src = fetchurl {
|
|
|
|
url = "${meta.homepage}dist/${name}.tar.gz";
|
2017-08-04 09:27:20 -07:00
|
|
|
sha256 = "04v7sp2vc1q6h8c5j8h4izffn9d97cdj0k64m4ml00lw6wxgwffx";
|
2014-05-04 00:51:10 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ bison flex ];
|
2016-11-17 05:45:56 -08:00
|
|
|
buildInputs = [ openssl zlib.dev ] ++ stdenv.lib.optionals usePAM [ pam ];
|
2014-05-04 00:51:10 -07:00
|
|
|
|
2014-05-09 13:47:45 -07:00
|
|
|
configureFlags = [
|
2016-04-16 10:44:32 -07:00
|
|
|
"--with-ssl-incl-dir=${openssl.dev}/include"
|
2016-01-23 23:30:05 -08:00
|
|
|
"--with-ssl-lib-dir=${openssl.out}/lib"
|
2014-05-09 13:47:45 -07:00
|
|
|
] ++ stdenv.lib.optionals (! usePAM) [ "--without-pam" ];
|
2009-08-26 09:22:20 -07:00
|
|
|
|
|
|
|
meta = {
|
2014-05-04 00:51:10 -07:00
|
|
|
homepage = http://mmonit.com/monit/;
|
2009-08-26 09:22:20 -07:00
|
|
|
description = "Monitoring system";
|
2014-05-04 00:51:10 -07:00
|
|
|
license = stdenv.lib.licenses.agpl3;
|
2014-07-22 14:45:18 -07:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ raskin wmertens ];
|
2016-08-02 10:50:55 -07:00
|
|
|
platforms = with stdenv.lib.platforms; linux;
|
2009-08-26 09:22:20 -07:00
|
|
|
};
|
|
|
|
}
|