nixpkgs/pkgs/servers/teleport/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
389 B
Nix
Raw Normal View History

2024-02-03 00:14:12 +00:00
{ callPackages, lib, ... }@args:
let
f = args: rec {
teleport_15 = import ./15 args;
2024-07-04 17:28:15 +00:00
teleport_16 = import ./16 args;
teleport = teleport_16;
2024-02-03 00:14:12 +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" ])