mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
6cca9c0f9f
Allow switching out kerberos server implementation. Sharing config is probably sensible, but implementation is different enough to be worth splitting into two files. Not sure this is the correct way to split an implementation, but it works for now. Uses the switch from config.krb5 to select implementation.
6 lines
141 B
Nix
6 lines
141 B
Nix
{ system ? builtins.currentSystem }:
|
|
{
|
|
mit = import ./mit.nix { inherit system; };
|
|
heimdal = import ./heimdal.nix { inherit system; };
|
|
}
|