summary refs log tree commit diff
path: root/lib/systems/inspect.nix
diff options
context:
space:
mode:
authorMichael Bishop <cleverca22@gmail.com>2019-11-02 12:47:38 -0300
committerMichael Bishop <cleverca22@gmail.com>2019-11-19 22:19:15 -0400
commit4aa1ffae041bb9c65eb3067e9dbaaa70710ed100 (patch)
tree7c1d8395796e35e95e89e4e522dd036c9ba48608 /lib/systems/inspect.nix
parent91b02cd86b09bdd3549663e81883a2c3a7e11961 (diff)
downloadnixpkgs-4aa1ffae041bb9c65eb3067e9dbaaa70710ed100.tar
nixpkgs-4aa1ffae041bb9c65eb3067e9dbaaa70710ed100.tar.gz
nixpkgs-4aa1ffae041bb9c65eb3067e9dbaaa70710ed100.tar.bz2
nixpkgs-4aa1ffae041bb9c65eb3067e9dbaaa70710ed100.tar.lz
nixpkgs-4aa1ffae041bb9c65eb3067e9dbaaa70710ed100.tar.xz
nixpkgs-4aa1ffae041bb9c65eb3067e9dbaaa70710ed100.tar.zst
nixpkgs-4aa1ffae041bb9c65eb3067e9dbaaa70710ed100.zip
initial implementation of vc4 cross-compile
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 8a983b3d363..d1980c6dff8 100644
--- a/lib/systems/inspect.nix
+++ b/lib/systems/inspect.nix
@@ -21,6 +21,7 @@ rec {
     isSparc        = { cpu = { family = "sparc"; }; };
     isWasm         = { cpu = { family = "wasm"; }; };
     isMsp430       = { cpu = { family = "msp430"; }; };
+    isVc4          = { cpu = { family = "vc4"; }; };
     isAvr          = { cpu = { family = "avr"; }; };
     isAlpha        = { cpu = { family = "alpha"; }; };
     isJavaScript   = { cpu = cpuTypes.js; };