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

22 lines
569 B
Nix
Raw Normal View History

2015-03-12 00:13:28 +01:00
{ stdenv, fetchurl, pkgconfig, gnutls, zlib }:
stdenv.mkDerivation rec {
2016-09-03 23:02:49 +02:00
name = "librelp-1.2.12";
2015-03-12 00:13:28 +01:00
src = fetchurl {
url = "http://download.rsyslog.com/librelp/${name}.tar.gz";
2016-09-03 23:02:49 +02:00
sha256 = "1mvvxqfsfg96rb6xv3fw7mcsqmyfnsb74sc53gnhpcpp4h2p6m83";
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 = http://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
maintainers = with maintainers; [ wkennington ];
};
}