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_95,
|
|
withRdpClient ? true,
|
|
extPatches ? [ ],
|
|
}:
|
|
|
|
buildTeleport {
|
|
version = "17.7.8";
|
|
hash = "sha256-z520UT17nFLBwyVLjdfx9aTbkMv1fljsN88G6WRPvZE=";
|
|
vendorHash = "sha256-mtOCLAcVIxaEhGzdsVWxnKQ4FRTXZ5vVAF+NVMdFItk=";
|
|
cargoHash = "sha256-qz8gkooQTuBlPWC4lHtvBQpKkd+nEZ0Hl7AVg9JkPqs=";
|
|
pnpmHash = "sha256-4xLbPQwmI0nAUNAgDHwkx1uSbjHPe8LNmEFQfoaj6bY=";
|
|
|
|
wasm-bindgen-cli = wasm-bindgen-cli_0_2_95;
|
|
buildGoModule = buildGo124Module;
|
|
inherit withRdpClient extPatches;
|
|
}
|