22 lines
569 B
Nix
22 lines
569 B
Nix
{ stdenv, fetchurl, pkgconfig, gnutls, zlib }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "librelp-1.2.15";
|
|
|
|
src = fetchurl {
|
|
url = "http://download.rsyslog.com/librelp/${name}.tar.gz";
|
|
sha256 = "16d9km99isa4mwk6psf8brny1sfl45dijlkdwzp0yrjnj0nq6cd9";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [ gnutls zlib ];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = http://www.librelp.com/;
|
|
description = "A reliable logging library";
|
|
license = licenses.gpl2;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ wkennington ];
|
|
};
|
|
}
|