lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #5935 from malyn/ccze

Add ccze

+29
+1
lib/maintainers.nix
··· 106 106 ludo = "Ludovic Courtès <ludo@gnu.org>"; 107 107 madjar = "Georges Dubus <georges.dubus@compiletoi.net>"; 108 108 magnetophon = "Bart Brouns <bart@magnetophon.nl>"; 109 + malyn = "Michael Alyn Miller <malyn@strangeGizmo.com>"; 109 110 manveru = "Michael Fellinger <m.fellinger@gmail.com>"; 110 111 marcweber = "Marc Weber <marco-oweber@gmx.de>"; 111 112 matejc = "Matej Cotman <cotman.matej@gmail.com>";
+26
pkgs/tools/misc/ccze/default.nix
··· 1 + { stdenv, fetchurl, autoconf, ncurses, pcre }: 2 + 3 + stdenv.mkDerivation rec { 4 + name = "ccze-0.2.1-2"; 5 + 6 + src = fetchurl { 7 + url = "https://github.com/madhouse/ccze/archive/${name}.tar.gz"; 8 + sha256 = "1amavfvyls4v0gnikk43n2rpciaspxifgrmvi99qj6imv3mfg66n"; 9 + }; 10 + 11 + buildInputs = [ autoconf ncurses pcre ]; 12 + 13 + preConfigure = '' autoheader && autoconf ''; 14 + 15 + meta = with stdenv.lib; { 16 + description = "Fast, modular log colorizer"; 17 + longDescription = '' 18 + Fast log colorizer written in C, intended to be a drop-in replacement 19 + for the Perl colorize tool. Includes plugins for a variety of log 20 + formats (Apache, Postfix, Procmail, etc.). 21 + ''; 22 + license = licenses.gpl2; 23 + maintainers = with maintainers; [ malyn ]; 24 + platforms = platforms.linux; 25 + }; 26 + }
+2
pkgs/top-level/all-packages.nix
··· 838 838 839 839 ccrypt = callPackage ../tools/security/ccrypt { }; 840 840 841 + ccze = callPackage ../tools/misc/ccze { }; 842 + 841 843 cdecl = callPackage ../development/tools/cdecl { }; 842 844 843 845 cdrdao = callPackage ../tools/cd-dvd/cdrdao { };