mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 19:51:17 +00:00
b944bd2c7f
EOL as v15 has been released.
13 lines
425 B
Nix
13 lines
425 B
Nix
{ callPackages, lib, ... }@args:
|
|
let
|
|
f = args: rec {
|
|
teleport_13 = import ./13 args;
|
|
teleport_14 = import ./14 args;
|
|
teleport_15 = import ./15 args;
|
|
teleport = teleport_15;
|
|
};
|
|
# 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" ])
|