nixos/tests/userborn: fix setting hostPlatform (#378940)
[NixPkgs.git] / pkgs / by-name / ev / eventlog / package.nix
blobee503578ec3e3528c9455a7dd188290222b50f18
2   lib,
3   stdenv,
4   fetchFromGitHub,
5   autoreconfHook,
6 }:
8 stdenv.mkDerivation rec {
9   pname = "eventlog";
10   version = "0.2.13";
12   src = fetchFromGitHub {
13     owner = "balabit";
14     repo = "eventlog";
15     rev = "a5c19163ba131f79452c6dfe4e31c2b4ce4be741";
16     sha256 = "0a2za3hs7wzy14z7mfgldy1r9xdlqv97yli9wlm8xldr0amsx869";
17   };
19   nativeBuildInputs = [ autoreconfHook ];
21   meta = with lib; {
22     description = "Syslog event logger library";
23     longDescription = ''
24       The EventLog library aims to be a replacement of the simple syslog() API
25       provided on UNIX systems. The major difference between EventLog and
26       syslog is that EventLog tries to add structure to messages.
28       Where you had a simple non-structrured string in syslog() you have a
29       combination of description and tag/value pairs.
30     '';
31     homepage = "https://www.balabit.com/support/community/products/";
32     license = licenses.bsd3;
33     platforms = platforms.unix;
34   };