2018-07-29 13:48:24 -07:00
|
|
|
{ stdenv
|
|
|
|
, fetchurl, bison, flex
|
|
|
|
, zlib
|
|
|
|
, usePAM ? stdenv.hostPlatform.isLinux, pam
|
|
|
|
, useSSL ? true, openssl
|
|
|
|
}:
|
|
|
|
|
2014-05-04 00:51:10 -07:00
|
|
|
stdenv.mkDerivation rec {
|
2020-11-03 03:09:23 -08:00
|
|
|
name = "monit-5.27.1";
|
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";
|
2020-11-03 03:09:23 -08:00
|
|
|
sha256 = "0lgdhif6x11fcpli0qn138rpdvrfnwmkzsy4lc9pas45c78hhx7m";
|
2014-05-04 00:51:10 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ bison flex ];
|
2018-02-20 08:40:39 -08:00
|
|
|
buildInputs = [ zlib.dev ] ++
|
|
|
|
stdenv.lib.optionals useSSL [ openssl ] ++
|
|
|
|
stdenv.lib.optionals usePAM [ pam ];
|
2014-05-04 00:51:10 -07:00
|
|
|
|
2018-07-29 13:48:24 -07:00
|
|
|
configureFlags = [
|
|
|
|
(stdenv.lib.withFeature usePAM "pam")
|
|
|
|
] ++ (if useSSL then [
|
2018-02-20 08:40:39 -08:00
|
|
|
"--with-ssl-incl-dir=${openssl.dev}/include"
|
|
|
|
"--with-ssl-lib-dir=${openssl.out}/lib"
|
2018-07-29 13:48:24 -07:00
|
|
|
] else [
|
|
|
|
"--without-ssl"
|
|
|
|
]) ++ stdenv.lib.optionals (stdenv.hostPlatform != stdenv.buildPlatform) [
|
2018-02-20 08:40:39 -08:00
|
|
|
# will need to check both these are true for musl
|
2018-07-29 13:48:24 -07:00
|
|
|
"libmonit_cv_setjmp_available=yes"
|
|
|
|
"libmonit_cv_vsnprintf_c99_conformant=yes"
|
|
|
|
];
|
2009-08-26 09:22:20 -07:00
|
|
|
|
|
|
|
meta = {
|
2020-03-31 18:11:51 -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
|
|
|
};
|
|
|
|
}
|