mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 21:50:55 +00:00
logcheck: 1.3.17 -> 1.3.18
logcheck: Added hyphen
This commit is contained in:
parent
61785c5531
commit
1dcb0bbc39
|
@ -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 ];
|
||||
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue