2018-07-29 21:48:24 +01:00
|
|
|
{ stdenv
|
|
|
|
, fetchurl, bison, flex
|
|
|
|
, zlib
|
|
|
|
, usePAM ? stdenv.hostPlatform.isLinux, pam
|
|
|
|
, useSSL ? true, openssl
|
|
|
|
}:
|
|
|
|
|
2014-05-04 08:51:10 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-03-26 06:43:30 +00:00
|
|
|
name = "monit-5.25.3";
|
2016-09-24 08:42:42 +01:00
|
|
|
|
2014-05-04 08:51:10 +01:00
|
|
|
src = fetchurl {
|
|
|
|
url = "${meta.homepage}dist/${name}.tar.gz";
|
2019-03-26 06:43:30 +00:00
|
|
|
sha256 = "0s8577ixcmx45b081yx6cw54iq7m5yzpq3ir616qc84xhg45h0n1";
|
2014-05-04 08:51:10 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ bison flex ];
|
2018-02-20 16:40:39 +00:00
|
|
|
buildInputs = [ zlib.dev ] ++
|
|
|
|
stdenv.lib.optionals useSSL [ openssl ] ++
|
|
|
|
stdenv.lib.optionals usePAM [ pam ];
|
2014-05-04 08:51:10 +01:00
|
|
|
|
2018-07-29 21:48:24 +01:00
|
|
|
configureFlags = [
|
|
|
|
(stdenv.lib.withFeature usePAM "pam")
|
|
|
|
] ++ (if useSSL then [
|
2018-02-20 16:40:39 +00:00
|
|
|
"--with-ssl-incl-dir=${openssl.dev}/include"
|
|
|
|
"--with-ssl-lib-dir=${openssl.out}/lib"
|
2018-07-29 21:48:24 +01:00
|
|
|
] else [
|
|
|
|
"--without-ssl"
|
|
|
|
]) ++ stdenv.lib.optionals (stdenv.hostPlatform != stdenv.buildPlatform) [
|
2018-02-20 16:40:39 +00:00
|
|
|
# will need to check both these are true for musl
|
2018-07-29 21:48:24 +01:00
|
|
|
"libmonit_cv_setjmp_available=yes"
|
|
|
|
"libmonit_cv_vsnprintf_c99_conformant=yes"
|
|
|
|
];
|
2009-08-26 17:22:20 +01:00
|
|
|
|
|
|
|
meta = {
|
2014-05-04 08:51:10 +01:00
|
|
|
homepage = http://mmonit.com/monit/;
|
2009-08-26 17:22:20 +01:00
|
|
|
description = "Monitoring system";
|
2014-05-04 08:51:10 +01:00
|
|
|
license = stdenv.lib.licenses.agpl3;
|
2014-07-22 22:45:18 +01:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ raskin wmertens ];
|
2016-08-02 18:50:55 +01:00
|
|
|
platforms = with stdenv.lib.platforms; linux;
|
2009-08-26 17:22:20 +01:00
|
|
|
};
|
|
|
|
}
|