Ver a proveniência
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
há 6 anos
ascendente
cometimento
4c26d0ec5f
Não foi encontrada uma chave conhecida para esta assinatura, na base de dados
ID da chave GPG: 3F2096411B5F92
1 ficheiros alterados com
8 adições e
1 eliminações
-
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); |
|
|
|
|
|
|
|
|