summary refs log tree commit diff
path: root/lib/systems/inspect.nix
diff options
context:
space:
mode:
authorMatthew Bauer <mjbauer95@gmail.com>2018-10-12 15:09:59 -0500
committerMatthew Bauer <mjbauer95@gmail.com>2018-10-29 14:34:09 -0500
commitd59a9ac7cf5e17f42aa1d971028f108864f2d252 (patch)
treeb6a8dd275ba5fdcb10b2d8c1cc0c5c004702ffe0 /lib/systems/inspect.nix
parent075e4883e0abea400aecb886e6244a6c2acf7bd8 (diff)
downloadnixpkgs-d59a9ac7cf5e17f42aa1d971028f108864f2d252.tar
nixpkgs-d59a9ac7cf5e17f42aa1d971028f108864f2d252.tar.gz
nixpkgs-d59a9ac7cf5e17f42aa1d971028f108864f2d252.tar.bz2
nixpkgs-d59a9ac7cf5e17f42aa1d971028f108864f2d252.tar.lz
nixpkgs-d59a9ac7cf5e17f42aa1d971028f108864f2d252.tar.xz
nixpkgs-d59a9ac7cf5e17f42aa1d971028f108864f2d252.tar.zst
nixpkgs-d59a9ac7cf5e17f42aa1d971028f108864f2d252.zip
avr: use new compilation infrastructure
Gets rid of:
  avrbinutils
  avrgcc

to replace with:
  pkgsCross.avr.buildPackages.binutils
  pkgsCross.avr.buildPackages.gcc
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 65f560328af..2fcf1afe462 100644
--- a/lib/systems/inspect.nix
+++ b/lib/systems/inspect.nix
@@ -19,6 +19,7 @@ rec {
     isRiscV        = { cpu = { family = "riscv"; }; };
     isSparc        = { cpu = { family = "sparc"; }; };
     isWasm         = { cpu = { family = "wasm"; }; };
+    isAvr          = { cpu = { family = "avr"; }; };
 
     is32bit        = { cpu = { bits = 32; }; };
     is64bit        = { cpu = { bits = 64; }; };