1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-06-19 07:59:24 +03:00
nixpkgs/nixos/tests/nfs/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
316 B
Nix
Raw Permalink Normal View History

{
version ? 4,
system ? builtins.currentSystem,
pkgs ? import ../../.. { inherit system; },
}:
{
simple = import ./simple.nix { inherit version system pkgs; };
}
// pkgs.lib.optionalAttrs (version == 4) {
# TODO: Test kerberos + nfsv3
kerberos = import ./kerberos.nix { inherit version system pkgs; };
}