teleport_13: init at 13.4.1

This commit is contained in:
techknowlogick 2023-10-04 02:20:39 -04:00
parent 7fdf2b5b86
commit 5fc008449a
3 changed files with 1954 additions and 1 deletions

1937
pkgs/servers/teleport/13/Cargo.lock generated Normal file

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,13 @@
{ callPackage, ... }@args:
callPackage ../generic.nix ({
version = "13.4.1";
hash = "sha256-wgSaek4eq5Jx9SZFenvdRSU1wEtfJHzTz9GdczzUU2w=";
vendorHash = "sha256-DesT18nV/SxOsKCC+Nt0hgtH7CRtRL0B5FQhE1J148I=";
yarnHash = "sha256-iyMcP9L6dwBhN8JL9eSVEzsXI2EOjfyxjF9Dm4Gs04s=";
cargoLock = {
lockFile = ./Cargo.lock;
outputHashes = {
"rdp-rs-0.1.0" = "sha256-n4x4w7GZULxqaR109das12+ZGU0xvY3wGOTWngcwe4M=";
};
};
} // builtins.removeAttrs args [ "callPackage" ])

View File

@ -13756,7 +13756,10 @@ with pkgs;
teleport_12 = callPackage ../servers/teleport/12 {
inherit (darwin.apple_sdk.frameworks) CoreFoundation Security AppKit;
};
teleport = teleport_12;
teleport_13 = callPackage ../servers/teleport/13 {
inherit (darwin.apple_sdk.frameworks) CoreFoundation Security AppKit;
};
teleport = teleport_13;
telepresence = callPackage ../tools/networking/telepresence {
pythonPackages = python3Packages;