2015-03-11 16:13:28 -07:00
|
|
|
{ stdenv, fetchurl, pkgconfig, gnutls, zlib }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-05-19 08:03:21 -07:00
|
|
|
name = "librelp-1.2.16";
|
2015-03-11 16:13:28 -07:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://download.rsyslog.com/librelp/${name}.tar.gz";
|
2018-05-19 08:03:21 -07:00
|
|
|
sha256 = "0lzxc2ydjbbs50dalqp2s107ckp63arpk223cigasq0hl395s8qc";
|
2015-03-11 16:13:28 -07:00
|
|
|
};
|
|
|
|
|
2017-09-05 14:26:13 -07:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ gnutls zlib ];
|
2015-03-11 16:13:28 -07:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = http://www.librelp.com/;
|
2016-06-20 03:53:46 -07:00
|
|
|
description = "A reliable logging library";
|
2015-03-11 16:13:28 -07:00
|
|
|
license = licenses.gpl2;
|
2015-04-04 20:03:33 -07:00
|
|
|
platforms = platforms.linux;
|
2015-03-11 16:13:28 -07:00
|
|
|
maintainers = with maintainers; [ wkennington ];
|
|
|
|
};
|
|
|
|
}
|