mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-11-09 16:18:34 +01:00
This makes one of the applied patches obsolete for all major versions.
Diffs:
https://github.com/gravitational/teleport/compare/v16.5.16...v16.5.18
https://github.com/gravitational/teleport/compare/v17.7.5...v17.7.8
https://github.com/gravitational/teleport/compare/v18.2.2...v18.3.1
(cherry picked from commit af8ff991c2)
20 lines
544 B
Nix
20 lines
544 B
Nix
{
|
|
buildTeleport,
|
|
buildGo124Module,
|
|
wasm-bindgen-cli_0_2_99,
|
|
withRdpClient ? true,
|
|
extPatches ? [ ],
|
|
}:
|
|
|
|
buildTeleport {
|
|
version = "18.3.1";
|
|
hash = "sha256-HM0pu+3O7zoClH15YC0naxxmKJC9ngamnvraTosRqG0=";
|
|
vendorHash = "sha256-HyS0KKW7lyn3NzedxM4+UxFV9OnxgtFDMW5jkj3ir/8=";
|
|
pnpmHash = "sha256-/G6WYC3YGk8ma4hAI6sZhQ6KAh+u4CxQ7891fYj5bJg=";
|
|
cargoHash = "sha256-ia4We4IfIkqz82aFMVvXdzjDXw0w+OJSPVdutfau6PA=";
|
|
|
|
wasm-bindgen-cli = wasm-bindgen-cli_0_2_99;
|
|
buildGoModule = buildGo124Module;
|
|
inherit withRdpClient extPatches;
|
|
}
|