Merge pull request #23317 from ndowens/logcheck

logcheck: 1.3.17 -> 1.3.18
This commit is contained in:
Joachim F 2017-03-05 21:52:11 +01:00 committed by GitHub
commit 1539d94a73

View file

@ -1,13 +1,13 @@
{ stdenv, fetchurl, lockfileProgs, perl, mimeConstruct }:
stdenv.mkDerivation rec {
_name = "logcheck";
version = "1.3.17";
name = "${_name}-${version}";
name = "logcheck-${version}";
version = "1.3.18";
_name = "logcheck_${version}";
src = fetchurl {
url = "mirror://debian/pool/main/l/${_name}/${_name}_${version}.tar.xz";
sha256 = "0fphzaljc9ddv1x6l3zdf9cbarqgzpdqaqwm3plmarcc7qrgrly2";
url = "mirror://debian/pool/main/l/logcheck/${_name}.tar.xz";
sha256 = "1x4skb5nmv2xj8cygj8pq1rd1ws4m2fsibw54yslgdyjri4r2yq7";
};
preConfigure = ''
@ -28,7 +28,7 @@ stdenv.mkDerivation rec {
"SHAREDIR=share/logtail/detectrotate"
];
meta = {
meta = with stdenv.lib; {
description = "Mails anomalies in the system logfiles to the administrator";
longDescription = ''
Mails anomalies in the system logfiles to the administrator.
@ -37,9 +37,8 @@ stdenv.mkDerivation rec {
Logcheck was part of the Abacus Project of security tools, but this version has been rewritten.
'';
homepage = http://logcheck.org;
license = stdenv.lib.licenses.gpl2;
maintainers = [ stdenv.lib.maintainers.bluescreen303 ];
platforms = stdenv.lib.platforms.all;
license = licenses.gpl2;
maintainers = [ maintainers.bluescreen303 ];
};
}