mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 22:43:01 +00:00
teleport_15: 15.4.11 -> 15.4.21
This commit is contained in:
parent
8c29c73a6d
commit
98c9f5fd29
@ -1,9 +1,9 @@
|
|||||||
{ wasm-bindgen-cli, ... }@args:
|
{ wasm-bindgen-cli, ... }@args:
|
||||||
import ../generic.nix (args // {
|
import ../generic.nix (args // {
|
||||||
version = "15.4.11";
|
version = "15.4.21";
|
||||||
hash = "sha256-vmJ76aRAsbSGXZ2HcuryOlUYrUOPMP6MaI8OjxxyiZ4=";
|
hash = "sha256-n5dAJ5ilq5nHo3neQzCUFnDRwLhArwleMSho4/g0MT4=";
|
||||||
vendorHash = "sha256-oJo8Ga6TAUz1xSYiRckzq8zZvgIZFCeEwZbiyyVOdkI=";
|
vendorHash = "sha256-bW8ztNeSzxUNtbuBtxIya9TeGfktC+/fz9iXB0GL0Mg=";
|
||||||
yarnHash = "sha256-5ppgBa5CyQ49FSFhdWDbTcCTdt0vsXAzNTeyG4r7crg=";
|
yarnHash = "sha256-ZaLLrcwAeq6TQ1SaA2few4s0HqktOZEpxCTcNGloGfk=";
|
||||||
cargoLock = {
|
cargoLock = {
|
||||||
lockFile = ./Cargo.lock;
|
lockFile = ./Cargo.lock;
|
||||||
outputHashes = {
|
outputHashes = {
|
||||||
|
@ -150,7 +150,7 @@ buildGoModule rec {
|
|||||||
patches = extPatches ++ [
|
patches = extPatches ++ [
|
||||||
./0001-fix-add-nix-path-to-exec-env.patch
|
./0001-fix-add-nix-path-to-exec-env.patch
|
||||||
./rdpclient.patch
|
./rdpclient.patch
|
||||||
(if lib.versionAtLeast version "16" then ./tsh_16.patch else ./tsh.patch)
|
./tsh.patch
|
||||||
];
|
];
|
||||||
|
|
||||||
# Reduce closure size for client machines
|
# Reduce closure size for client machines
|
||||||
|
@ -11,7 +11,7 @@ index 5de21c69d0..3995c19e3c 100644
|
|||||||
if err != nil {
|
if err != nil {
|
||||||
return trace.Wrap(err)
|
return trace.Wrap(err)
|
||||||
}
|
}
|
||||||
+ cf.executablePath = path.Dir(tempBinaryPath) + "/tsh"
|
+ cf.executablePath = filepath.Dir(tempBinaryPath) + "/tsh"
|
||||||
|
|
||||||
// configs
|
// configs
|
||||||
setEnvFlags(&cf)
|
setEnvFlags(&cf)
|
||||||
|
@ -1,17 +0,0 @@
|
|||||||
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 = filepath.Dir(tempBinaryPath) + "/tsh"
|
|
||||||
|
|
||||||
// configs
|
|
||||||
setEnvFlags(&cf)
|
|
Loading…
Reference in New Issue
Block a user