summaryrefslogtreecommitdiffstats
path: root/pkgs/tools
diff options
context:
space:
mode:
authorJoachim F <joachifm@users.noreply.github.com>2017-03-05 21:52:11 +0100
committerGitHub <noreply@github.com>2017-03-05 21:52:11 +0100
commit1539d94a7395bdeb0b28b91282e78971387f8200 (patch)
tree321db670b857dcb85d1195ced862cb4df934b2da /pkgs/tools
parent113873b8bb8cc3c1b93821072d7901d0c58abac1 (diff)
parent1dcb0bbc39b1b58484c8aad7e0748c3fdb8423ab (diff)
Merge pull request #23317 from ndowens/logcheck
logcheck: 1.3.17 -> 1.3.18
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/system/logcheck/default.nix19
1 files changed, 9 insertions, 10 deletions
diff --git a/pkgs/tools/system/logcheck/default.nix b/pkgs/tools/system/logcheck/default.nix
index 9934175ae3b6..9c2a42eeb5ae 100644
--- a/pkgs/tools/system/logcheck/default.nix
+++ b/pkgs/tools/system/logcheck/default.nix
@@ -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 ];
+
};
}