mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 03:56:17 +03:00
083d0890f5
* Remove package name * Start with upper case letter * Remove trailing period Also reword some descriptions and move some long descriptions to longDescription. I'm not touching generated packages.
22 lines
611 B
Nix
22 lines
611 B
Nix
{stdenv, fetchurl, eventlog, pkgconfig, libestr, libee, json_c, libuuid, zlib, gnutls}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "rsyslog-7.2.6";
|
|
|
|
src = fetchurl {
|
|
url = http://www.rsyslog.com/files/download/rsyslog/rsyslog-7.2.6.tar.gz;
|
|
sha256 = "19a5c60816ebce6c86468eb8c5fe1c4cc1febf23c9167ce59d2327fe5e047ed9";
|
|
};
|
|
|
|
buildInputs = [pkgconfig libestr libee json_c libuuid zlib gnutls];
|
|
|
|
configureFlags = "--enable-gnutls";
|
|
|
|
meta = {
|
|
homepage = "http://www.rsyslog.com/";
|
|
description = "Enhanced syslog implementation";
|
|
license = "GPLv3";
|
|
platforms = stdenv.lib.platforms.linux;
|
|
};
|
|
}
|