From 4c26d0ec5f6ccc32ebf1b39b69d243d28bd4e9a0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Mon, 6 Jul 2020 07:48:13 +0100 Subject: [PATCH] flake.nix: add armv6l/armv7l systems We built at least armv7l on hydra, therefor nixpkgs should also expose it. --- flake.nix | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) 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);