Merge pull request #234392 from lorenz/fix-teleport

teleport: mark as broken on <64 bit platforms
This commit is contained in:
Robert Scott 2023-05-27 12:48:04 +01:00 committed by GitHub
commit 2d895ae34c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -160,5 +160,8 @@ buildGoModule rec {
license = licenses.asl20;
maintainers = with maintainers; [ arianvp justinas sigma tomberek freezeboy ];
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;
};
}