Bläddra i källkod
flake.nix: add armv6l/armv7l systems
We built at least armv7l on hydra, therefor nixpkgs should also expose it.
wip-nanopi-m4v2
Jörg Thalheim
6 år sedan
förälder
incheckning
4c26d0ec5f
Ingen känd nyckel hittad för denna signaturen i databasen
GPG-nyckel ID: 3F2096411B5F92
1 ändrade filer med
8 tillägg och
1 borttagningar
-
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); |
|
|
|
|
|
|
|
|