flake.nix: add armv6l/armv7l systems

We built at least armv7l on hydra, therefor nixpkgs should also expose it.
This commit is contained in:
Jörg Thalheim 2020-07-06 07:48:13 +01:00
parent b2aa673d5a
commit 4c26d0ec5f
No known key found for this signature in database
GPG Key ID: 003F2096411B5F92
1 changed files with 8 additions and 1 deletions

View File

@ -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);