teleport_18: 18.9.1 -> 18.9.2 (#538338)

This commit is contained in:
Arne Keller
2026-07-09 21:33:49 +00:00
committed by GitHub
2 changed files with 26 additions and 7 deletions
+7 -7
View File
@@ -1,19 +1,19 @@
{
buildTeleport,
buildGo125Module,
wasm-bindgen-cli_0_2_99,
wasm-bindgen-cli_0_2_122,
withRdpClient ? true,
extPatches ? [ ],
}:
buildTeleport {
version = "18.9.1";
hash = "sha256-FIPExc8tMoPXfWc7pQjwQRkxmiQEOxdkYgWS0GejQuk=";
vendorHash = "sha256-BlQhypAoK85ID0pgmXbUboks88qjSg3p5E8qxyTIc9M=";
pnpmHash = "sha256-ZGbuBMPwC3u/2qDTVLH2InOGVc94Vq0i3AKHMsOwq3k=";
cargoHash = "sha256-KbmacTEOElmboHMK6YxWGC0brlDsX7kcvpaOOZmuops=";
version = "18.9.2";
hash = "sha256-w6qCH57L2rwClbSpZeG01eekzj3JRNijwSdfl+wx8v8=";
vendorHash = "sha256-LJmpFHvFsBsneq1Cl3vvqxBGB94gSjaikNDZtQfwNjM=";
pnpmHash = "sha256-8tKVv5SPJlS89EsHhF8qpThkh4n47qRBbHDCgX17Cdg=";
cargoHash = "sha256-+B5fGIzCpiYmqVcM4iy+PTIdtvuvtufQiXMHNzHTDlQ=";
wasm-bindgen-cli = wasm-bindgen-cli_0_2_99;
wasm-bindgen-cli = wasm-bindgen-cli_0_2_122;
buildGoModule = buildGo125Module;
inherit withRdpClient extPatches;
}
@@ -0,0 +1,19 @@
{
buildWasmBindgenCli,
fetchCrate,
rustPlatform,
}:
buildWasmBindgenCli rec {
src = fetchCrate {
pname = "wasm-bindgen-cli";
version = "0.2.122";
hash = "sha256-vO4RSxi/sMWxmsEs3GuljdMfIRSu75A+Q+c5wgYToRU=";
};
cargoDeps = rustPlatform.fetchCargoVendor {
inherit src;
inherit (src) pname version;
hash = "sha256-Inup6vvJSG5ghNyeDPyZbfZo4d0LsMG2OJfStoaeDBs=";
};
}