about summary refs log tree commit diff
path: root/lib
diff options
context:
space:
mode:
authorRyan Lahfa <masterancpp@gmail.com>2024-02-09 15:07:01 +0100
committerGitHub <noreply@github.com>2024-02-09 15:07:01 +0100
commitdbd22195df0a2a6315fe85fcb1418efae83b0679 (patch)
tree795dc1b4be2671ac43870e96368213091f820a32 /lib
parent8f02296eda9db181940adac94db788ce78cfc0b9 (diff)
parentb62bc38ac958776893d2afefcf6cfd0b6fcde424 (diff)
downloadnixlib-dbd22195df0a2a6315fe85fcb1418efae83b0679.tar
nixlib-dbd22195df0a2a6315fe85fcb1418efae83b0679.tar.gz
nixlib-dbd22195df0a2a6315fe85fcb1418efae83b0679.tar.bz2
nixlib-dbd22195df0a2a6315fe85fcb1418efae83b0679.tar.lz
nixlib-dbd22195df0a2a6315fe85fcb1418efae83b0679.tar.xz
nixlib-dbd22195df0a2a6315fe85fcb1418efae83b0679.tar.zst
nixlib-dbd22195df0a2a6315fe85fcb1418efae83b0679.zip
Merge pull request #287124 from RaitoBezarius/is-sparc-64
lib/systems/inspect: add `isSparc64`
Diffstat (limited to 'lib')
-rw-r--r--lib/systems/inspect.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/systems/inspect.nix b/lib/systems/inspect.nix
index 38ca9967cdde..c6a33781ae28 100644
--- a/lib/systems/inspect.nix
+++ b/lib/systems/inspect.nix
@@ -48,6 +48,7 @@ rec {
     isRiscV64      = { cpu = { family = "riscv"; bits = 64; }; };
     isRx           = { cpu = { family = "rx"; }; };
     isSparc        = { cpu = { family = "sparc"; }; };
+    isSparc64      = { cpu = { family = "sparc"; bits = 64; }; };
     isWasm         = { cpu = { family = "wasm"; }; };
     isMsp430       = { cpu = { family = "msp430"; }; };
     isVc4          = { cpu = { family = "vc4"; }; };