Merge pull request #5935 from malyn/ccze

Add ccze
wip/yesman
Edward Tjörnhammar 10 years ago
commit 35af8c6105
  1. 1
      lib/maintainers.nix
  2. 26
      pkgs/tools/misc/ccze/default.nix
  3. 2
      pkgs/top-level/all-packages.nix

@ -106,6 +106,7 @@
ludo = "Ludovic Courtès <ludo@gnu.org>";
madjar = "Georges Dubus <georges.dubus@compiletoi.net>";
magnetophon = "Bart Brouns <bart@magnetophon.nl>";
malyn = "Michael Alyn Miller <malyn@strangeGizmo.com>";
manveru = "Michael Fellinger <m.fellinger@gmail.com>";
marcweber = "Marc Weber <marco-oweber@gmx.de>";
matejc = "Matej Cotman <cotman.matej@gmail.com>";

@ -0,0 +1,26 @@
{ stdenv, fetchurl, autoconf, ncurses, pcre }:
stdenv.mkDerivation rec {
name = "ccze-0.2.1-2";
src = fetchurl {
url = "https://github.com/madhouse/ccze/archive/${name}.tar.gz";
sha256 = "1amavfvyls4v0gnikk43n2rpciaspxifgrmvi99qj6imv3mfg66n";
};
buildInputs = [ autoconf ncurses pcre ];
preConfigure = '' autoheader && autoconf '';
meta = with stdenv.lib; {
description = "Fast, modular log colorizer";
longDescription = ''
Fast log colorizer written in C, intended to be a drop-in replacement
for the Perl colorize tool. Includes plugins for a variety of log
formats (Apache, Postfix, Procmail, etc.).
'';
license = licenses.gpl2;
maintainers = with maintainers; [ malyn ];
platforms = platforms.linux;
};
}

@ -838,6 +838,8 @@ let
ccrypt = callPackage ../tools/security/ccrypt { };
ccze = callPackage ../tools/misc/ccze { };
cdecl = callPackage ../development/tools/cdecl { };
cdrdao = callPackage ../tools/cd-dvd/cdrdao { };

Loading…
Cancel
Save