about summary refs log tree commit diff
path: root/pkgs/servers
diff options
context:
space:
mode:
authorGraham Christensen <graham@grahamc.com>2017-01-23 20:14:25 -0500
committerGitHub <noreply@github.com>2017-01-23 20:14:25 -0500
commitd8464ef0e1204bfe6477367584c644e6697b265e (patch)
tree34e42a39f6c0c8e8a26fa9ce1b6d4f059bc35f15 /pkgs/servers
parent06ad459f5ba32fb5ee3a2414e52563e0ff2fadb1 (diff)
parent016bec0e5ed69b6a03f4b53710adc3de9d9fbda0 (diff)
downloadnixlib-d8464ef0e1204bfe6477367584c644e6697b265e.tar
nixlib-d8464ef0e1204bfe6477367584c644e6697b265e.tar.gz
nixlib-d8464ef0e1204bfe6477367584c644e6697b265e.tar.bz2
nixlib-d8464ef0e1204bfe6477367584c644e6697b265e.tar.lz
nixlib-d8464ef0e1204bfe6477367584c644e6697b265e.tar.xz
nixlib-d8464ef0e1204bfe6477367584c644e6697b265e.tar.zst
nixlib-d8464ef0e1204bfe6477367584c644e6697b265e.zip
Merge pull request #22046 from DerTim1/nagiosplugins
NagiosPlugins: 2.1.4 -> 2.2.0, add SSL
Diffstat (limited to 'pkgs/servers')
-rw-r--r--pkgs/servers/monitoring/nagios/plugins/official-2.x.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/servers/monitoring/nagios/plugins/official-2.x.nix b/pkgs/servers/monitoring/nagios/plugins/official-2.x.nix
index 306dee0ec627..897182fe225c 100644
--- a/pkgs/servers/monitoring/nagios/plugins/official-2.x.nix
+++ b/pkgs/servers/monitoring/nagios/plugins/official-2.x.nix
@@ -1,12 +1,12 @@
-{ stdenv, fetchurl, openssh }:
+{ stdenv, fetchurl, openssh, openssl }:
 
 stdenv.mkDerivation rec {
   name = "nagios-plugins-${version}";
-  version = "2.1.4";
+  version = "2.2.0";
 
   src = fetchurl {
     url = "http://nagios-plugins.org/download/${name}.tar.gz";
-    sha256 = "146hrpcwciz0niqsv4k5yvkhaggs9mr5v02xnnxp5yp0xpdbama3";
+    sha256 = "074yia04py5y07sbgkvri10dv8nf41kqq1x6kmwqcix5vvm9qyy3";
   };
 
   # !!! Awful hack. Grrr... this of course only works on NixOS.
@@ -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";