forgejo-lts: 7.0.10 -> 7.0.11
[NixPkgs.git] / pkgs / servers / teleport / default.nix
blobeb8f6fb4492e07eb914b02b3688dcb725d86a7fa
1 { callPackages, lib, ... }@args:
2 let
3   f = args: rec {
4     teleport_15 = import ./15 args;
5     teleport_16 = import ./16 args;
6     teleport = teleport_16;
7   };
8   # Ensure the following callPackages invocation includes everything 'generic' needs.
9   f' = lib.setFunctionArgs f (builtins.functionArgs (import ./generic.nix));
11 callPackages f' (builtins.removeAttrs args [ "callPackages" ])