about summary refs log tree commit diff
diff options
context:
space:
mode:
authorwmertens <Wout.Mertens@gmail.com>2014-05-20 02:21:25 +0200
committerBjørn Forsman <bjorn.forsman@gmail.com>2014-05-25 19:27:10 +0200
commit7fafc6ff857e61a34894eb54b4e4e8afe968198c (patch)
tree04a5dfdcb59ef306c753bf7771e5823c739d34e5
parent6915bc07b2a4c3e2ef05cf018a77e3d3d46b1b55 (diff)
downloadnixlib-7fafc6ff857e61a34894eb54b4e4e8afe968198c.tar
nixlib-7fafc6ff857e61a34894eb54b4e4e8afe968198c.tar.gz
nixlib-7fafc6ff857e61a34894eb54b4e4e8afe968198c.tar.bz2
nixlib-7fafc6ff857e61a34894eb54b4e4e8afe968198c.tar.lz
nixlib-7fafc6ff857e61a34894eb54b4e4e8afe968198c.tar.xz
nixlib-7fafc6ff857e61a34894eb54b4e4e8afe968198c.tar.zst
nixlib-7fafc6ff857e61a34894eb54b4e4e8afe968198c.zip
monit: bump 5.8 -> 5.8.1 (bug fixes)
-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 28d58abe5aac..8e4848f2db62 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, usePAM ? stdenv.isLinux }:
 
 stdenv.mkDerivation rec {
-  name = "monit-5.8";
+  name = "monit-5.8.1";
   
   src = fetchurl {
     url = "${meta.homepage}dist/${name}.tar.gz";
-    sha256 = "1xa7i29ma81jjxac0qc29wcxxvbv58n3jbwmllscamh1phz5f00c";
+    sha256 = "1rbhr3aff8pbiz60r73607hci4yngv5xq1b6yjx9xhks4mwlnpm2";
   };
 
   nativeBuildInputs = [ bison flex ];