mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 15:03:28 +00:00
freeradius: add option to compile with postgres
This commit is contained in:
parent
1925c603f1
commit
89ffd389ec
@ -12,6 +12,7 @@
|
||||
, withLdap ? true, openldap
|
||||
, withMemcached ? false, libmemcached
|
||||
, withMysql ? false, libmysqlclient
|
||||
, withPostgresql ? false, postgresql
|
||||
, withPcap ? true, libpcap
|
||||
, withRedis ? false, hiredis
|
||||
, withRest ? false, curl
|
||||
@ -41,6 +42,7 @@ stdenv.mkDerivation rec {
|
||||
++ lib.optional withLdap openldap
|
||||
++ lib.optional withMemcached libmemcached
|
||||
++ lib.optional withMysql libmysqlclient
|
||||
++ lib.optional withPostgresql postgresql
|
||||
++ lib.optional withPcap libpcap
|
||||
++ lib.optional withRedis hiredis
|
||||
++ lib.optional withRest curl
|
||||
|
Loading…
Reference in New Issue
Block a user