python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / nixos / modules / programs / freetds.nix
blob98274fa9b5626e5ca9fdf3cb8119d20d91a2cd5c
1 # Global configuration for freetds environment.
3 { config, lib, pkgs, ... }:
5 with lib;
7 let
9   cfg = config.environment.freetds;
13   ###### interface
15   options = {
17     environment.freetds = mkOption {
18       type = types.attrsOf types.str;
19       default = {};
20       example = literalExpression ''
21         { MYDATABASE = '''
22             host = 10.0.2.100
23             port = 1433
24             tds version = 7.2
25           ''';
26         }
27       '';
28       description =
29         lib.mdDoc ''
30         Configure freetds database entries. Each attribute denotes
31         a section within freetds.conf, and the value (a string) is the config
32         content for that section. When at least one entry is configured
33         the global environment variables FREETDSCONF, FREETDS and SYBASE
34         will be configured to allow the programs that use freetds to find the
35         library and config.
36         '';
38     };
40   };
42   ###### implementation
44   config = mkIf (length (attrNames cfg) > 0) {
46     environment.variables.FREETDSCONF = "/etc/freetds.conf";
47     environment.variables.FREETDS = "/etc/freetds.conf";
48     environment.variables.SYBASE = "${pkgs.freetds}";
50     environment.etc."freetds.conf" = { text =
51       (concatStrings (mapAttrsToList (name: value:
52         ''
53         [${name}]
54         ${value}
55         ''
56       ) cfg));
57     };
59   };