summary refs log tree commit diff
path: root/lib/systems/inspect.nix
diff options
context:
space:
mode:
authoryvt <i@yvt.jp>2022-05-23 09:52:36 +0900
committerGitHub <noreply@github.com>2022-05-22 20:52:36 -0400
commitbf139d83eca3ef5442aa875458193d44ddf9dc6c (patch)
tree8a798cf0dde9a37146c3597fe8ed4706379060ad /lib/systems/inspect.nix
parent66782715d8e56e8ce7ef5bc32799554d668120f6 (diff)
downloadnixpkgs-bf139d83eca3ef5442aa875458193d44ddf9dc6c.tar
nixpkgs-bf139d83eca3ef5442aa875458193d44ddf9dc6c.tar.gz
nixpkgs-bf139d83eca3ef5442aa875458193d44ddf9dc6c.tar.bz2
nixpkgs-bf139d83eca3ef5442aa875458193d44ddf9dc6c.tar.lz
nixpkgs-bf139d83eca3ef5442aa875458193d44ddf9dc6c.tar.xz
nixpkgs-bf139d83eca3ef5442aa875458193d44ddf9dc6c.tar.zst
nixpkgs-bf139d83eca3ef5442aa875458193d44ddf9dc6c.zip
systems: support cross-compiling for Renesas RX microcontrollers (#173858)
Diffstat (limited to 'lib/systems/inspect.nix')
-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 27c25deafec..00cbe4f012c 100644
--- a/lib/systems/inspect.nix
+++ b/lib/systems/inspect.nix
@@ -26,6 +26,7 @@ rec {
     isRiscV        = { cpu = { family = "riscv"; }; };
     isRiscV32      = { cpu = { family = "riscv"; bits = 32; }; };
     isRiscV64      = { cpu = { family = "riscv"; bits = 64; }; };
+    isRx           = { cpu = { family = "rx"; }; };
     isSparc        = { cpu = { family = "sparc"; }; };
     isWasm         = { cpu = { family = "wasm"; }; };
     isMsp430       = { cpu = { family = "msp430"; }; };