You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
An integer in Nix is always signed, which can lead to issues when a number exceeds 2^63 - 1.
For instance, I ran nixos-facter on a Dell R760 server, which sets the value of an entry in hardware.memory_array_mapped_address to 18446741876833779712. This makes the nix configuration fail to build when anything references the report as JSON seems to be eagerly loaded by nix.
This is clearly an edge case, but would it be possible to use strings instead of uint64 in the output for these values?
The text was updated successfully, but these errors were encountered:
Please let me know if there's anything I can do to help. I have some experience in Go and since this related to my work, I can spend a bit of time on it.
Do you know what an ideal solution to this would look like for you (if you think this should be fixed)? If you let me know I can look into implementing it
Thanks for all the work you're putting into this project - facter is an extremely useful tool for me!
An integer in Nix is always signed, which can lead to issues when a number exceeds
2^63 - 1
.For instance, I ran nixos-facter on a Dell R760 server, which sets the value of an entry in
hardware.memory_array_mapped_address
to18446741876833779712
. This makes the nix configuration fail to build when anything references the report as JSON seems to be eagerly loaded by nix.This is clearly an edge case, but would it be possible to use strings instead of uint64 in the output for these values?
The text was updated successfully, but these errors were encountered: