···2727 if system == "x86_64-linux" then pkgs_x86_64_linux
2828 else if system == "i686-linux" then pkgs_i686_linux
2929 else if system == "aarch64-linux" then pkgs_aarch64_linux
3030+ else if system == "armv6l-linux" then pkgs_armv6l_linux
3131+ else if system == "armv7l-linux" then pkgs_armv7l_linux
3032 else if system == "x86_64-darwin" then pkgs_x86_64_darwin
3133 else if system == "x86_64-freebsd" then pkgs_x86_64_freebsd
3234 else if system == "i686-freebsd" then pkgs_i686_freebsd
···3739 pkgs_x86_64_linux = allPackages { system = "x86_64-linux"; };
3840 pkgs_i686_linux = allPackages { system = "i686-linux"; };
3941 pkgs_aarch64_linux = allPackages { system = "aarch64-linux"; };
4242+ pkgs_armv6l_linux = allPackages { system = "armv6l-linux"; };
4343+ pkgs_armv7l_linux = allPackages { system = "armv7l-linux"; };
4044 pkgs_x86_64_darwin = allPackages { system = "x86_64-darwin"; };
4145 pkgs_x86_64_freebsd = allPackages { system = "x86_64-freebsd"; };
4246 pkgs_i686_freebsd = allPackages { system = "i686-freebsd"; };