summary refs log tree commit diff
path: root/pkgs/tools/misc/ccze/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/tools/misc/ccze/default.nix')
-rw-r--r--pkgs/tools/misc/ccze/default.nix26
1 files changed, 26 insertions, 0 deletions
diff --git a/pkgs/tools/misc/ccze/default.nix b/pkgs/tools/misc/ccze/default.nix
new file mode 100644
index 00000000000..409297de9f7
--- /dev/null
+++ b/pkgs/tools/misc/ccze/default.nix
@@ -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;
+  };
+}