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

22 lines
569 B
Nix
Raw Normal View History

2015-03-11 23:13:28 +00:00
{ stdenv, fetchurl, pkgconfig, gnutls, zlib }:
stdenv.mkDerivation rec {
name = "librelp-1.2.15";
2015-03-11 23:13:28 +00:00
src = fetchurl {
url = "http://download.rsyslog.com/librelp/${name}.tar.gz";
sha256 = "16d9km99isa4mwk6psf8brny1sfl45dijlkdwzp0yrjnj0nq6cd9";
2015-03-11 23:13:28 +00:00
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ gnutls zlib ];
2015-03-11 23:13:28 +00:00
meta = with stdenv.lib; {
homepage = http://www.librelp.com/;
description = "A reliable logging library";
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
maintainers = with maintainers; [ wkennington ];
};
}