nixpkgs/pkgs/development/libraries/librelp/default.nix
2020-05-06 23:18:21 -07:00

30 lines
607 B
Nix

{ stdenv, fetchFromGitHub
, autoreconfHook
, gnutls
, openssl
, pkgconfig
, zlib
}:
stdenv.mkDerivation rec {
pname = "librelp";
version = "1.6.0";
src = fetchFromGitHub {
owner = "rsyslog";
repo = "librelp";
rev = "v${version}";
sha256 = "132i1b1m7c7hkbxsnpa7n07cbghxjxmcbb8zhgwziaxg4nzxsa6l";
};
nativeBuildInputs = [ pkgconfig autoreconfHook ];
buildInputs = [ gnutls zlib openssl ];
meta = with stdenv.lib; {
description = "A reliable logging library";
homepage = "https://www.librelp.com/";
license = licenses.gpl2;
platforms = platforms.linux;
};
}