python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / misc / ccze / default.nix
blob4946fd64d89dd598645696a000ed5eb1ed1bc0e7
1 { lib, stdenv, fetchFromGitHub, autoconf, ncurses, pcre }:
3 stdenv.mkDerivation rec {
4   pname = "ccze";
5   version = "0.2.1-2";
7   src = fetchFromGitHub {
8     owner = "madhouse";
9     repo = "ccze";
10     rev = "ccze-${version}";
11     hash = "sha256-LVwmbrq78mZcAEuAqjXTqLE5we83H9mcMPtxQx2Tn/c=";
12   };
14   nativeBuildInputs = [ autoconf ];
16   buildInputs = [ ncurses pcre ];
18   preConfigure = ''
19     autoheader
20     autoconf
21   '';
23   meta = with lib; {
24     description = "Fast, modular log colorizer";
25     longDescription = ''
26       Fast log colorizer written in C, intended to be a drop-in replacement
27       for the Perl colorize tool.  Includes plugins for a variety of log
28       formats (Apache, Postfix, Procmail, etc.).
29     '';
30     license = licenses.gpl2;
31     maintainers = with maintainers; [ malyn ];
32     platforms = platforms.linux;
33   };