mini-calc: 3.3.3 -> 3.3.5 (#372274)
[NixPkgs.git] / pkgs / by-name / li / librelp / package.nix
blob00e8ef09be0a9e55bbf1b64d18a982d2593246a0
2   lib,
3   stdenv,
4   fetchFromGitHub,
5   autoreconfHook,
6   gnutls,
7   openssl,
8   pkg-config,
9   zlib,
12 stdenv.mkDerivation rec {
13   pname = "librelp";
14   version = "1.11.0";
16   src = fetchFromGitHub {
17     owner = "rsyslog";
18     repo = "librelp";
19     rev = "v${version}";
20     sha256 = "sha256-VJlvFiOsIyiu0kBU8NkObtt9j2ElrSzJtvE8wtSlOus=";
21   };
23   nativeBuildInputs = [
24     pkg-config
25     autoreconfHook
26   ];
27   buildInputs = [
28     gnutls
29     zlib
30     openssl
31   ];
33   meta = with lib; {
34     description = "Reliable logging library";
35     homepage = "https://www.librelp.com/";
36     license = licenses.gpl2;
37     platforms = platforms.linux;
38   };