Skip to content

Commit

Permalink
monit: 5.19.0 -> 5.20.0 for CVE-2016-7067
Browse files Browse the repository at this point in the history
(cherry picked from commit 1376aeb)
  • Loading branch information
grahamc committed Nov 19, 2016
1 parent 356d9b1 commit 417e04f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions pkgs/tools/system/monit/default.nix
@@ -1,15 +1,15 @@
{stdenv, fetchurl, openssl, bison, flex, pam, usePAM ? stdenv.isLinux }:
{stdenv, fetchurl, openssl, bison, flex, pam, zlib, usePAM ? stdenv.isLinux }:

stdenv.mkDerivation rec {
name = "monit-5.19.0";
name = "monit-5.20.0";

src = fetchurl {
url = "${meta.homepage}dist/${name}.tar.gz";
sha256 = "1f32dz7zzp575d35m8xkgjgrqs2vbls0q6vdzm7wwashcm1xbz5y";
sha256 = "13drg4k9r9drn7bpj3n04kkf1l29q05jdccdar6yc6hcqmg3kb7b";
};

nativeBuildInputs = [ bison flex ];
buildInputs = [ openssl ] ++ stdenv.lib.optionals usePAM [ pam ];
buildInputs = [ openssl zlib.dev ] ++ stdenv.lib.optionals usePAM [ pam ];

configureFlags = [
"--with-ssl-incl-dir=${openssl.dev}/include"
Expand Down

0 comments on commit 417e04f

Please sign in to comment.