From 90ee91b6d6bee695707a3b6af6e6d475da07fdee Mon Sep 17 00:00:00 2001 From: techknowlogick Date: Thu, 1 Aug 2024 13:02:44 -0400 Subject: [PATCH] teleport: darwin unbroken --- pkgs/servers/teleport/generic.nix | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/pkgs/servers/teleport/generic.nix b/pkgs/servers/teleport/generic.nix index 003f0b79320f..caf345d944b3 100644 --- a/pkgs/servers/teleport/generic.nix +++ b/pkgs/servers/teleport/generic.nix @@ -181,12 +181,6 @@ buildGoModule rec { platforms = platforms.unix; # go-libfido2 is broken on platforms with less than 64-bit because it defines an array # which occupies more than 31 bits of address space. - broken = stdenv.hostPlatform.parsed.cpu.bits < 64 || - # See comment about wasm32-unknown-unknown in rustc.nix. - # version 15 is the first that starts to use wasm - (lib.versionAtLeast version "15") && ( - lib.any (a: lib.hasAttr a stdenv.hostPlatform.gcc) [ "cpu" "float-abi" "fpu" ] || - !stdenv.hostPlatform.gcc.thumb or true - ); + broken = stdenv.hostPlatform.parsed.cpu.bits < 64; }; }