nixpkgs/nixos/tests/kerberos/default.nix

10 lines
249 B
Nix
Raw Permalink Normal View History

{
system ? builtins.currentSystem,
pkgs ? import ../../.. { inherit system; },
2019-01-11 04:36:51 +00:00
}:
{
2019-01-11 04:36:51 +00:00
mit = import ./mit.nix { inherit system pkgs; };
heimdal = import ./heimdal.nix { inherit system pkgs; };
ldap = import ./ldap { inherit system pkgs; };
}