nixpkgs/pkgs/tools/system/monit/default.nix

42 lines
1.1 KiB
Nix
Raw Normal View History

2021-01-15 09:19:50 +00:00
{ lib, stdenv
, fetchurl, bison, flex
, zlib
, usePAM ? stdenv.hostPlatform.isLinux, pam
, useSSL ? true, openssl
}:
stdenv.mkDerivation rec {
2021-01-20 05:52:16 +00:00
name = "monit-5.27.2";
src = fetchurl {
url = "${meta.homepage}dist/${name}.tar.gz";
2021-01-20 05:52:16 +00:00
sha256 = "sha256-2ICceNXcHtenujKlpVxRFIVRMsxNpIBfjTqvjPRuqkw=";
};
nativeBuildInputs = [ bison flex ];
buildInputs = [ zlib.dev ] ++
2021-01-15 09:19:50 +00:00
lib.optionals useSSL [ openssl ] ++
lib.optionals usePAM [ pam ];
configureFlags = [
2021-01-15 09:19:50 +00:00
(lib.withFeature usePAM "pam")
] ++ (if useSSL then [
"--with-ssl-incl-dir=${openssl.dev}/include"
"--with-ssl-lib-dir=${openssl.out}/lib"
] else [
"--without-ssl"
2021-01-15 09:19:50 +00:00
]) ++ lib.optionals (stdenv.hostPlatform != stdenv.buildPlatform) [
# will need to check both these are true for musl
"libmonit_cv_setjmp_available=yes"
"libmonit_cv_vsnprintf_c99_conformant=yes"
];
meta = {
homepage = "http://mmonit.com/monit/";
description = "Monitoring system";
2021-01-15 09:19:50 +00:00
license = lib.licenses.agpl3;
2021-02-26 19:37:18 +00:00
maintainers = with lib.maintainers; [ raskin wmertens ryantm ];
2021-01-15 09:19:50 +00:00
platforms = with lib.platforms; linux;
};
}