nagiosPluginsOfficial: configure with ssl

This commit is contained in:
Tim Digel 2017-01-23 08:54:11 +01:00
parent 13d6681ce7
commit cfe4196696

View File

@ -1,4 +1,4 @@
{ stdenv, fetchurl, openssh }:
{ stdenv, fetchurl, openssh, openssl }:
stdenv.mkDerivation rec {
name = "nagios-plugins-${version}";
@ -24,7 +24,7 @@ stdenv.mkDerivation rec {
postInstall = "ln -s libexec $out/bin";
# !!! make openssh a runtime dependency only
buildInputs = [ openssh ];
buildInputs = [ openssh openssl ];
meta = {
description = "Official plugins for Nagios";