2024-04-21 15:54:59 +00:00
|
|
|
{ callPackages, lib, ... }@args:
|
|
|
|
let
|
|
|
|
f = args: rec {
|
|
|
|
teleport_14 = import ./14 args;
|
|
|
|
teleport_15 = import ./15 args;
|
2024-07-27 06:49:29 +00:00
|
|
|
teleport_16 = import ./16 args;
|
|
|
|
teleport = teleport_16;
|
2024-04-21 15:54:59 +00:00
|
|
|
};
|
|
|
|
# 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" ])
|