logcheck: 1.3.17 -> 1.3.18

logcheck: Added hyphen
This commit is contained in:
ndowens 2017-02-28 20:10:30 -06:00
parent 61785c5531
commit 1dcb0bbc39

View File

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