librelp: 1.3.0 -> 1.4.0

This commit is contained in:
Jonathan Ringer 2019-08-11 17:07:51 -07:00
parent 4ff9a48398
commit 7943e28fec

View File

@ -1,19 +1,28 @@
{ stdenv, fetchurl, pkgconfig, gnutls, zlib }: { stdenv, fetchFromGitHub
, autoreconfHook
, gnutls
, openssl
, pkgconfig
, zlib
}:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "librelp-1.3.0"; pname = "librelp";
version = "1.4.0";
src = fetchurl { src = fetchFromGitHub {
url = "http://download.rsyslog.com/librelp/${name}.tar.gz"; owner = "rsyslog";
sha256 = "1xg99ndn65984mrh30qvys5npc73ag4348whshghrcj9azya494z"; repo = "librelp";
rev = "v${version}";
sha256 = "1q0k8zm7p6wpkri419kkpz734lp1hnxfqx1aa3xys4pj7zgx9jck";
}; };
nativeBuildInputs = [ pkgconfig ]; nativeBuildInputs = [ pkgconfig autoreconfHook ];
buildInputs = [ gnutls zlib ]; buildInputs = [ gnutls zlib openssl ];
meta = with stdenv.lib; { meta = with stdenv.lib; {
homepage = https://www.librelp.com/;
description = "A reliable logging library"; description = "A reliable logging library";
homepage = "https://www.librelp.com/";
license = licenses.gpl2; license = licenses.gpl2;
platforms = platforms.linux; platforms = platforms.linux;
}; };