mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 04:02:55 +03:00
ulogd: support postgresql, mysql and sqlite as databases
The binary weighs ~100KiB more, this is acceptable given that it is very useful to log to proper RDBMS which we do support anyway.
This commit is contained in:
parent
fb7bba2a3f
commit
df7941dc4e
@ -1,5 +1,6 @@
|
||||
{ stdenv, lib, fetchurl, gnumake, libnetfilter_acct, libnetfilter_conntrack
|
||||
, libnetfilter_log, libmnl, libnfnetlink, automake, autoconf, autogen, libtool
|
||||
, postgresql, libmysqlclient, sqlite
|
||||
, pkg-config, libpcap, linuxdoc-tools, autoreconfHook, nixosTests }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
@ -37,6 +38,9 @@ stdenv.mkDerivation rec {
|
||||
libmnl
|
||||
libnfnetlink
|
||||
libpcap
|
||||
postgresql
|
||||
libmysqlclient
|
||||
sqlite
|
||||
];
|
||||
|
||||
nativeBuildInputs = [
|
||||
|
Loading…
Reference in New Issue
Block a user