depot/third_party/nixpkgs/pkgs/development/libraries/librelp/default.nix
Default email a3bb8d7922 Project import generated by Copybara.
GitOrigin-RevId: 439b1605227b8adb1357b55ce8529d541abbe9eb
2021-08-06 00:33:18 +03:00

29 lines
607 B
Nix

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