2018-02-20 16:40:39 +00:00
|
|
|
{stdenv, fetchurl, openssl, bison, flex, pam, zlib, usePAM ? stdenv.isLinux
|
|
|
|
, buildPlatform, hostPlatform }:
|
|
|
|
let useSSL = (openssl != null);
|
|
|
|
isCross = ( buildPlatform != hostPlatform ) ; in
|
2014-05-04 08:51:10 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2018-06-06 07:44:33 +01:00
|
|
|
name = "monit-5.25.2";
|
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";
|
2018-06-06 07:44:33 +01:00
|
|
|
sha256 = "0jn6mdsh50zd3jc61hr1y8sd80r01gqcyvd860zf8m8i3lvfc35a";
|
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-02-20 16:40:39 +00:00
|
|
|
configureFlags =
|
|
|
|
if useSSL then [
|
|
|
|
"--with-ssl-incl-dir=${openssl.dev}/include"
|
|
|
|
"--with-ssl-lib-dir=${openssl.out}/lib"
|
|
|
|
] else [ "--without-ssl" ] ++
|
|
|
|
stdenv.lib.optionals (! usePAM) [ "--without-pam" ] ++
|
|
|
|
# will need to check both these are true for musl
|
|
|
|
stdenv.lib.optionals isCross [ "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
|
|
|
};
|
|
|
|
}
|