python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / libraries / liblognorm / default.nix
blob184d9932eb281f899882c7dd8517ab4cd4d6af8e
1 { lib, stdenv, fetchurl, pkg-config, libestr, json_c, pcre, fastJson }:
3 stdenv.mkDerivation rec {
4   pname = "liblognorm";
5   version = "2.0.6";
7   src = fetchurl {
8     url = "http://www.liblognorm.com/files/download/liblognorm-${version}.tar.gz";
9     sha256 = "1wpn15c617r7lfm1z9d5aggmmi339s6yn4pdz698j0r2bkl5gw6g";
10   };
12   nativeBuildInputs = [ pkg-config ];
13   buildInputs = [ libestr json_c pcre fastJson ];
15   configureFlags = [ "--enable-regexp" ];
17   meta = with lib; {
18     description = "Help to make sense out of syslog data, or, actually, any event data that is present in text form";
19     homepage = "https://www.liblognorm.com/";
20     license = licenses.lgpl21;
21     mainProgram = "lognormalizer";
22     platforms = platforms.all;
23   };