nixpkgs/pkgs/development/libraries/librelp/default.nix

30 lines
607 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub
2019-08-12 00:07:51 +00:00
, autoreconfHook
, gnutls
, openssl
, pkg-config
2019-08-12 00:07:51 +00:00
, zlib
}:
2015-03-11 23:13:28 +00:00
stdenv.mkDerivation rec {
2019-08-12 00:07:51 +00:00
pname = "librelp";
2021-02-19 15:52:17 +00:00
version = "1.10.0";
2015-03-11 23:13:28 +00:00
2019-08-12 00:07:51 +00:00
src = fetchFromGitHub {
owner = "rsyslog";
repo = "librelp";
rev = "v${version}";
2021-02-19 15:52:17 +00:00
sha256 = "sha256-aJLsUtik5aXfsdi+8QoDgbi4VUZ8gV3YPA6kIY6wzs4=";
2015-03-11 23:13:28 +00:00
};
nativeBuildInputs = [ pkg-config autoreconfHook ];
2019-08-12 00:07:51 +00:00
buildInputs = [ gnutls zlib openssl ];
2015-03-11 23:13:28 +00:00
meta = with lib; {
description = "A reliable logging library";
2019-08-12 00:07:51 +00:00
homepage = "https://www.librelp.com/";
2015-03-11 23:13:28 +00:00
license = licenses.gpl2;
2015-04-05 03:03:33 +00:00
platforms = platforms.linux;
2015-03-11 23:13:28 +00:00
};
}