2018-07-20 20:56:59 +00:00
|
|
|
{ config, lib, ... }:
|
2009-03-06 12:25:33 +00:00
|
|
|
|
2014-04-14 14:26:48 +00:00
|
|
|
with lib;
|
2013-09-04 11:05:09 +00:00
|
|
|
|
|
|
|
# unixODBC drivers (this solution is not perfect.. Because the user has to
|
|
|
|
# ask the admin to add a driver.. but it's simple and works
|
|
|
|
|
2016-04-26 18:18:21 +00:00
|
|
|
let
|
|
|
|
iniDescription = pkg: ''
|
|
|
|
[${pkg.fancyName}]
|
|
|
|
Description = ${pkg.meta.description}
|
|
|
|
Driver = ${pkg}/${pkg.driver}
|
|
|
|
'';
|
|
|
|
|
|
|
|
in {
|
2013-09-04 11:05:09 +00:00
|
|
|
###### interface
|
2009-03-06 12:25:33 +00:00
|
|
|
|
|
|
|
options = {
|
2013-09-04 11:05:09 +00:00
|
|
|
environment.unixODBCDrivers = mkOption {
|
2016-01-17 18:34:55 +00:00
|
|
|
type = types.listOf types.package;
|
2013-09-04 11:05:09 +00:00
|
|
|
default = [];
|
2016-04-26 18:18:21 +00:00
|
|
|
example = literalExample "with pkgs.unixODBCDrivers; [ sqlite psql ]";
|
2013-09-04 11:05:09 +00:00
|
|
|
description = ''
|
|
|
|
Specifies Unix ODBC drivers to be registered in
|
|
|
|
<filename>/etc/odbcinst.ini</filename>. You may also want to
|
|
|
|
add <literal>pkgs.unixODBC</literal> to the system path to get
|
|
|
|
a command line client to connnect to ODBC databases.
|
|
|
|
'';
|
2009-03-06 12:25:33 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2013-09-04 11:05:09 +00:00
|
|
|
###### implementation
|
2009-03-06 12:25:33 +00:00
|
|
|
|
2013-09-04 11:05:09 +00:00
|
|
|
config = mkIf (config.environment.unixODBCDrivers != []) {
|
2016-04-26 18:18:21 +00:00
|
|
|
environment.etc."odbcinst.ini".text = concatMapStringsSep "\n" iniDescription config.environment.unixODBCDrivers;
|
2009-03-06 12:25:33 +00:00
|
|
|
};
|
2013-09-04 11:05:09 +00:00
|
|
|
|
2009-03-06 12:25:33 +00:00
|
|
|
}
|