3
0
Fork 0
forked from mirrors/nixpkgs
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 {
2016-09-03 22:02:49 +01:00
name = "librelp-1.2.12";
2015-03-11 23:13:28 +00:00
src = fetchurl {
url = "http://download.rsyslog.com/librelp/${name}.tar.gz";
2016-09-03 22:02:49 +01:00
sha256 = "1mvvxqfsfg96rb6xv3fw7mcsqmyfnsb74sc53gnhpcpp4h2p6m83";
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 04:03:33 +01:00
platforms = platforms.linux;
2015-03-11 23:13:28 +00:00
maintainers = with maintainers; [ wkennington ];
};
}