depot/third_party/nixpkgs/pkgs/servers/teleport/default.nix
Default email 24fdeddc0a Project import generated by Copybara.
GitOrigin-RevId: 2768c7d042a37de65bb1b5b3268fc987e534c49d
2024-10-23 09:41:50 +03:00

11 lines
389 B
Nix

{ callPackages, lib, ... }@args:
let
f = args: rec {
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" ])