Luke Granger-Brown
57725ef3ec
git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
11 lines
389 B
Nix
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" ])
|