about summary refs log tree commit diff
path: root/pkgs/servers/teleport/default.nix
blob: b5fc9936e814b9999d4d58940e7bc80418508c23 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{ callPackages, lib, ... }@args:
let
  f = args: rec {
    teleport_13 = import ./13 args;
    teleport_14 = import ./14 args;
    teleport_15 = import ./15 args;
    teleport = teleport_15;
  };
  # Ensure the following callPackages invocation includes everything 'generic' needs.
  f' = lib.setFunctionArgs f (builtins.functionArgs (import ./generic.nix));
in
callPackages f' (builtins.removeAttrs args [ "callPackages" ])