Commit 86f814fc authored by JuliusFreudenberger's avatar JuliusFreudenberger
Browse files

teleport_17: init at 17.2.1

parent ce9995c8
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -9,8 +9,9 @@ with import ../lib/testing-python.nix { inherit system pkgs; };

let
  packages = with pkgs; {
    "default" = teleport;
    "15" = teleport_15;
    "16" = teleport_16;
    "17" = teleport_17;
  };

  minimal = package: {
+11 −0
Original line number Diff line number Diff line
{ wasm-bindgen-cli, ... }@args:
import ../generic.nix (
  args
  // {
    version = "17.2.1";
    hash = "sha256-QlBj3zGnELgQJMIMSZK1YVE3H2hO09Xgdtcw0BML7KQ=";
    vendorHash = "sha256-Y3og6oifpQIZxkKR1qgD3l06YaCFpSlh/+jN3w0gq7M=";
    pnpmHash = "sha256-ChRWq0acDzHhm6JK2W3V6LZHlq4vXMxa1AMqiCPIouc=";
    cargoHash = "sha256-GDwH/2aiqvTbLC8/x/n0yLuU8IEBVpyacN2B+EGwBgE=";
  }
)
+13 −0
Original line number Diff line number Diff line
@@ -3,6 +3,8 @@
  lib,
  wasm-bindgen-cli_0_2_92,
  wasm-bindgen-cli_0_2_95,
  buildGo122Module,
  buildGo123Module,
  ...
}@args:
let
@@ -12,15 +14,24 @@ let
      args
      // {
        wasm-bindgen-cli = wasm-bindgen-cli_0_2_92;
        buildGoModule = buildGo122Module;
      }
    );
    teleport_16 = import ./16 (
      args
      // {
        wasm-bindgen-cli = wasm-bindgen-cli_0_2_95;
        buildGoModule = buildGo122Module;
      }
    );
    teleport = teleport_16;
    teleport_17 = import ./17 (
      args
      // {
        wasm-bindgen-cli = wasm-bindgen-cli_0_2_95;
        buildGoModule = buildGo123Module;
      }
    );
  };
  # Ensure the following callPackages invocation includes everything 'generic' needs.
  f' = lib.setFunctionArgs f (builtins.functionArgs (import ./generic.nix));
@@ -30,5 +41,7 @@ callPackages f' (
    "callPackages"
    "wasm-bindgen-cli_0_2_92"
    "wasm-bindgen-cli_0_2_95"
    "buildGo122Module"
    "buildGo123Module"
  ]
)
+1 −2
Original line number Diff line number Diff line
@@ -5137,8 +5137,7 @@ with pkgs;
  inherit (callPackages ../servers/teleport {
    inherit (darwin.apple_sdk.frameworks) CoreFoundation Security AppKit;
    buildGoModule = buildGo122Module;
  }) teleport_15 teleport_16 teleport;
  }) teleport_15 teleport_16 teleport_17 teleport;
  telepresence = callPackage ../tools/networking/telepresence {
    pythonPackages = python3Packages;