depot/third_party/nixpkgs/pkgs/servers/teleport/default.nix
Default email f34ce41345 Project import generated by Copybara.
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
2024-07-27 08:49:29 +02:00

12 lines
425 B
Nix

{ callPackages, lib, ... }@args:
let
f = args: rec {
teleport_14 = import ./14 args;
teleport_15 = import ./15 args;
teleport_16 = import ./16 args;
teleport = teleport_16;
};
# 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" ])