depot/third_party/nixpkgs/pkgs/development/libraries/librelp/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

29 lines
607 B
Nix

{ stdenv, fetchFromGitHub
, autoreconfHook
, gnutls
, openssl
, pkgconfig
, zlib
}:
stdenv.mkDerivation rec {
pname = "librelp";
version = "1.5.0";
src = fetchFromGitHub {
owner = "rsyslog";
repo = "librelp";
rev = "v${version}";
sha256 = "1il8dany6y981ficrwnxjlc13v5lj6gqia5678p5pj6bcbq7l7lb";
};
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;
};
}