summary refs log tree commit diff
path: root/pkgs/tools/system/monit
diff options
context:
space:
mode:
authorRyan Mulligan <ryan@ryantm.com>2018-02-27 06:16:55 -0800
committerRyan Mulligan <ryan@ryantm.com>2018-02-27 06:16:55 -0800
commitb7dcc45c49cf0075e2b779aa9abef730766930a6 (patch)
tree8887c9c075616cbdb380ff82053726fc2ccae1df /pkgs/tools/system/monit
parent6a101342051182e66587249cfd8c4800b0746c82 (diff)
downloadnixlib-b7dcc45c49cf0075e2b779aa9abef730766930a6.tar
nixlib-b7dcc45c49cf0075e2b779aa9abef730766930a6.tar.gz
nixlib-b7dcc45c49cf0075e2b779aa9abef730766930a6.tar.bz2
nixlib-b7dcc45c49cf0075e2b779aa9abef730766930a6.tar.lz
nixlib-b7dcc45c49cf0075e2b779aa9abef730766930a6.tar.xz
nixlib-b7dcc45c49cf0075e2b779aa9abef730766930a6.tar.zst
nixlib-b7dcc45c49cf0075e2b779aa9abef730766930a6.zip
monit: 5.23.0 -> 5.25.1
Semi-automatic update. These checks were performed:

- built on NixOS
- ran `/nix/store/qphnal7xszj71fmmy0l2kvz2d3bqpw1x-monit-5.25.1/bin/monit -h` got 0 exit code
- ran `/nix/store/qphnal7xszj71fmmy0l2kvz2d3bqpw1x-monit-5.25.1/bin/monit --help` got 0 exit code
- ran `/nix/store/qphnal7xszj71fmmy0l2kvz2d3bqpw1x-monit-5.25.1/bin/monit -V` and found version 5.25.1
- ran `/nix/store/qphnal7xszj71fmmy0l2kvz2d3bqpw1x-monit-5.25.1/bin/monit --version` and found version 5.25.1
- found 5.25.1 with grep in /nix/store/qphnal7xszj71fmmy0l2kvz2d3bqpw1x-monit-5.25.1
- found 5.25.1 in filename of file in /nix/store/qphnal7xszj71fmmy0l2kvz2d3bqpw1x-monit-5.25.1

cc "@raskin @wmertens"
Diffstat (limited to 'pkgs/tools/system/monit')
-rw-r--r--pkgs/tools/system/monit/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/system/monit/default.nix b/pkgs/tools/system/monit/default.nix
index 71a4db63c84f..9057e5bc9c50 100644
--- a/pkgs/tools/system/monit/default.nix
+++ b/pkgs/tools/system/monit/default.nix
@@ -1,11 +1,11 @@
 {stdenv, fetchurl, openssl, bison, flex, pam, zlib, usePAM ? stdenv.isLinux }:
 
 stdenv.mkDerivation rec {
-  name = "monit-5.23.0";
+  name = "monit-5.25.1";
 
   src = fetchurl {
     url = "${meta.homepage}dist/${name}.tar.gz";
-    sha256 = "04v7sp2vc1q6h8c5j8h4izffn9d97cdj0k64m4ml00lw6wxgwffx";
+    sha256 = "1g417cf6j0v6z233a3625fw1cxsh45xql7ag83jz2988n772ap2b";
   };
 
   nativeBuildInputs = [ bison flex ];