summary refs log tree commit diff
path: root/flake.nix
diff options
context:
space:
mode:
authorJörg Thalheim <joerg@thalheim.io>2020-07-06 07:48:13 +0100
committerJörg Thalheim <joerg@thalheim.io>2020-07-06 07:52:01 +0100
commit4c26d0ec5f6ccc32ebf1b39b69d243d28bd4e9a0 (patch)
treea33b171f560d834c9350ecb474aef062a43a1cbc /flake.nix
parentb2aa673d5ac626c429417ef4cb4ff9c866ff74f4 (diff)
downloadnixpkgs-4c26d0ec5f6ccc32ebf1b39b69d243d28bd4e9a0.tar
nixpkgs-4c26d0ec5f6ccc32ebf1b39b69d243d28bd4e9a0.tar.gz
nixpkgs-4c26d0ec5f6ccc32ebf1b39b69d243d28bd4e9a0.tar.bz2
nixpkgs-4c26d0ec5f6ccc32ebf1b39b69d243d28bd4e9a0.tar.lz
nixpkgs-4c26d0ec5f6ccc32ebf1b39b69d243d28bd4e9a0.tar.xz
nixpkgs-4c26d0ec5f6ccc32ebf1b39b69d243d28bd4e9a0.tar.zst
nixpkgs-4c26d0ec5f6ccc32ebf1b39b69d243d28bd4e9a0.zip
flake.nix: add armv6l/armv7l systems
We built at least armv7l on hydra, therefor nixpkgs should also expose it.
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix9
1 files changed, 8 insertions, 1 deletions
diff --git a/flake.nix b/flake.nix
index e37621c6fc1..d26cce1f881 100644
--- a/flake.nix
+++ b/flake.nix
@@ -12,7 +12,14 @@
 
       lib = import ./lib;
 
-      systems = [ "x86_64-linux" "i686-linux" "x86_64-darwin" "aarch64-linux" ];
+      systems = [
+        "x86_64-linux"
+        "i686-linux"
+        "x86_64-darwin"
+        "aarch64-linux"
+        "armv6l-linux"
+        "armv7l-linux"
+      ];
 
       forAllSystems = f: lib.genAttrs systems (system: f system);