Merge pull request #92423 from Mic92/arm-flakes

flake.nix: add armv6l/armv7l systems
This commit is contained in:
Jörg Thalheim 2020-07-28 10:02:22 +01:00 committed by GitHub
commit 55cd36a232
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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);