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

21 lines
516 B
Nix
Raw Normal View History

2015-03-12 00:13:28 +01:00
{ stdenv, fetchurl, pkgconfig, gnutls, zlib }:
stdenv.mkDerivation rec {
name = "librelp-1.3.0";
2015-03-12 00:13:28 +01:00
src = fetchurl {
url = "http://download.rsyslog.com/librelp/${name}.tar.gz";
sha256 = "1xg99ndn65984mrh30qvys5npc73ag4348whshghrcj9azya494z";
2015-03-12 00:13:28 +01:00
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ gnutls zlib ];
2015-03-12 00:13:28 +01:00
meta = with stdenv.lib; {
homepage = https://www.librelp.com/;
description = "A reliable logging library";
2015-03-12 00:13:28 +01:00
license = licenses.gpl2;
2015-04-05 05:03:33 +02:00
platforms = platforms.linux;
2015-03-12 00:13:28 +01:00
};
}