mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 15:03:28 +00:00
teleport_14: init at 14.0.1
This commit is contained in:
parent
5fc008449a
commit
3a60214cb3
@ -10,4 +10,10 @@ callPackage ../generic.nix ({
|
|||||||
"rdp-rs-0.1.0" = "sha256-GJfUyiYQwcDTMqt+iik3mFI0f6mu13RJ2XuoDzlg9sU=";
|
"rdp-rs-0.1.0" = "sha256-GJfUyiYQwcDTMqt+iik3mFI0f6mu13RJ2XuoDzlg9sU=";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
extPatches = [
|
||||||
|
# https://github.com/NixOS/nixpkgs/issues/120738
|
||||||
|
../tsh.patch
|
||||||
|
# https://github.com/NixOS/nixpkgs/issues/132652
|
||||||
|
../test.patch
|
||||||
|
];
|
||||||
} // builtins.removeAttrs args [ "callPackage" ])
|
} // builtins.removeAttrs args [ "callPackage" ])
|
||||||
|
@ -10,4 +10,10 @@ callPackage ../generic.nix ({
|
|||||||
"rdp-rs-0.1.0" = "sha256-n4x4w7GZULxqaR109das12+ZGU0xvY3wGOTWngcwe4M=";
|
"rdp-rs-0.1.0" = "sha256-n4x4w7GZULxqaR109das12+ZGU0xvY3wGOTWngcwe4M=";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
extPatches = [
|
||||||
|
# https://github.com/NixOS/nixpkgs/issues/120738
|
||||||
|
../tsh.patch
|
||||||
|
# https://github.com/NixOS/nixpkgs/issues/132652
|
||||||
|
../test.patch
|
||||||
|
];
|
||||||
} // builtins.removeAttrs args [ "callPackage" ])
|
} // builtins.removeAttrs args [ "callPackage" ])
|
||||||
|
@ -10,4 +10,10 @@ callPackage ../generic.nix ({
|
|||||||
"rdp-rs-0.1.0" = "sha256-n4x4w7GZULxqaR109das12+ZGU0xvY3wGOTWngcwe4M=";
|
"rdp-rs-0.1.0" = "sha256-n4x4w7GZULxqaR109das12+ZGU0xvY3wGOTWngcwe4M=";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
extPatches = [
|
||||||
|
# https://github.com/NixOS/nixpkgs/issues/120738
|
||||||
|
../tsh.patch
|
||||||
|
# https://github.com/NixOS/nixpkgs/issues/132652
|
||||||
|
../test.patch
|
||||||
|
];
|
||||||
} // builtins.removeAttrs args [ "callPackage" ])
|
} // builtins.removeAttrs args [ "callPackage" ])
|
||||||
|
1982
pkgs/servers/teleport/14/Cargo.lock
generated
Normal file
1982
pkgs/servers/teleport/14/Cargo.lock
generated
Normal file
File diff suppressed because it is too large
Load Diff
17
pkgs/servers/teleport/14/default.nix
Normal file
17
pkgs/servers/teleport/14/default.nix
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
{ callPackage, ... }@args:
|
||||||
|
callPackage ../generic.nix ({
|
||||||
|
version = "14.0.1";
|
||||||
|
hash = "sha256-esQwk2PFnk3/REzLr3ExtzEcUs2q4Tn/2KpfFWAx5uU=";
|
||||||
|
vendorHash = "sha256-lzwrkW0dHxCHBSJjzNhXgq3Av8Zj8xEn3kfTRtT/q04=";
|
||||||
|
yarnHash = "sha256-Y2dVxRyKPLD2xjwr0QqrKHf/4gnMCErmDzievu5zTGg=";
|
||||||
|
cargoLock = {
|
||||||
|
lockFile = ./Cargo.lock;
|
||||||
|
outputHashes = {
|
||||||
|
"rdp-rs-0.1.0" = "sha256-n4x4w7GZULxqaR109das12+ZGU0xvY3wGOTWngcwe4M=";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
extPatches = [
|
||||||
|
# https://github.com/NixOS/nixpkgs/issues/120738
|
||||||
|
../tsh_14.patch
|
||||||
|
];
|
||||||
|
} // builtins.removeAttrs args [ "callPackage" ])
|
@ -22,6 +22,7 @@
|
|||||||
, version
|
, version
|
||||||
, hash
|
, hash
|
||||||
, vendorHash
|
, vendorHash
|
||||||
|
, extPatches ? null
|
||||||
, cargoHash ? null
|
, cargoHash ? null
|
||||||
, cargoLock ? null
|
, cargoLock ? null
|
||||||
, yarnHash
|
, yarnHash
|
||||||
@ -111,11 +112,7 @@ buildGoModule rec {
|
|||||||
++ lib.optionals (stdenv.isDarwin && withRdpClient) [ CoreFoundation Security AppKit ];
|
++ lib.optionals (stdenv.isDarwin && withRdpClient) [ CoreFoundation Security AppKit ];
|
||||||
nativeBuildInputs = [ makeWrapper pkg-config ];
|
nativeBuildInputs = [ makeWrapper pkg-config ];
|
||||||
|
|
||||||
patches = [
|
patches = extPatches ++ [
|
||||||
# https://github.com/NixOS/nixpkgs/issues/120738
|
|
||||||
./tsh.patch
|
|
||||||
# https://github.com/NixOS/nixpkgs/issues/132652
|
|
||||||
./test.patch
|
|
||||||
./0001-fix-add-nix-path-to-exec-env.patch
|
./0001-fix-add-nix-path-to-exec-env.patch
|
||||||
./rdpclient.patch
|
./rdpclient.patch
|
||||||
];
|
];
|
||||||
|
17
pkgs/servers/teleport/tsh_14.patch
Normal file
17
pkgs/servers/teleport/tsh_14.patch
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
diff --git a/tool/tsh/common/tsh.go b/tool/tsh/common/tsh.go
|
||||||
|
index 5de21c69d0..3995c19e3c 100644
|
||||||
|
--- a/tool/tsh/common/tsh.go
|
||||||
|
+++ b/tool/tsh/common/tsh.go
|
||||||
|
@@ -1084,10 +1084,11 @@ func Run(ctx context.Context, args []string, opts ...CliOption) error {
|
||||||
|
|
||||||
|
var err error
|
||||||
|
|
||||||
|
- cf.executablePath, err = os.Executable()
|
||||||
|
+ tempBinaryPath, err := os.Executable()
|
||||||
|
if err != nil {
|
||||||
|
return trace.Wrap(err)
|
||||||
|
}
|
||||||
|
+ cf.executablePath = path.Dir(tempBinaryPath) + "/tsh"
|
||||||
|
|
||||||
|
// configs
|
||||||
|
setEnvFlags(&cf)
|
@ -13759,7 +13759,11 @@ with pkgs;
|
|||||||
teleport_13 = callPackage ../servers/teleport/13 {
|
teleport_13 = callPackage ../servers/teleport/13 {
|
||||||
inherit (darwin.apple_sdk.frameworks) CoreFoundation Security AppKit;
|
inherit (darwin.apple_sdk.frameworks) CoreFoundation Security AppKit;
|
||||||
};
|
};
|
||||||
teleport = teleport_13;
|
teleport_14 = callPackage ../servers/teleport/14 {
|
||||||
|
inherit (darwin.apple_sdk.frameworks) CoreFoundation Security AppKit;
|
||||||
|
buildGoModule = buildGo121Module;
|
||||||
|
};
|
||||||
|
teleport = teleport_14;
|
||||||
|
|
||||||
telepresence = callPackage ../tools/networking/telepresence {
|
telepresence = callPackage ../tools/networking/telepresence {
|
||||||
pythonPackages = python3Packages;
|
pythonPackages = python3Packages;
|
||||||
|
Loading…
Reference in New Issue
Block a user