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

21 lines
541 B
Nix
Raw Normal View History

2015-03-11 23:13:28 +00:00
{ stdenv, fetchurl, pkgconfig, gnutls, zlib }:
stdenv.mkDerivation rec {
2015-09-18 02:21:58 +00:00
name = "librelp-1.2.8";
2015-03-11 23:13:28 +00:00
src = fetchurl {
url = "http://download.rsyslog.com/librelp/${name}.tar.gz";
2015-09-18 02:21:58 +00:00
sha256 = "1qxj7isa2d10aw6c4a9pd3fx08vv06rrhac312avgcjmdqaa88r6";
2015-03-11 23:13:28 +00:00
};
buildInputs = [ pkgconfig gnutls zlib ];
meta = with stdenv.lib; {
homepage = http://www.librelp.com/;
description = "a reliable logging library";
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 ];
};
}