···27 if system == "x86_64-linux" then pkgs_x86_64_linux
28 else if system == "i686-linux" then pkgs_i686_linux
29 else if system == "aarch64-linux" then pkgs_aarch64_linux
0030 else if system == "x86_64-darwin" then pkgs_x86_64_darwin
31 else if system == "x86_64-freebsd" then pkgs_x86_64_freebsd
32 else if system == "i686-freebsd" then pkgs_i686_freebsd
···37 pkgs_x86_64_linux = allPackages { system = "x86_64-linux"; };
38 pkgs_i686_linux = allPackages { system = "i686-linux"; };
39 pkgs_aarch64_linux = allPackages { system = "aarch64-linux"; };
0040 pkgs_x86_64_darwin = allPackages { system = "x86_64-darwin"; };
41 pkgs_x86_64_freebsd = allPackages { system = "x86_64-freebsd"; };
42 pkgs_i686_freebsd = allPackages { system = "i686-freebsd"; };
···27 if system == "x86_64-linux" then pkgs_x86_64_linux
28 else if system == "i686-linux" then pkgs_i686_linux
29 else if system == "aarch64-linux" then pkgs_aarch64_linux
30+ else if system == "armv6l-linux" then pkgs_armv6l_linux
31+ else if system == "armv7l-linux" then pkgs_armv7l_linux
32 else if system == "x86_64-darwin" then pkgs_x86_64_darwin
33 else if system == "x86_64-freebsd" then pkgs_x86_64_freebsd
34 else if system == "i686-freebsd" then pkgs_i686_freebsd
···39 pkgs_x86_64_linux = allPackages { system = "x86_64-linux"; };
40 pkgs_i686_linux = allPackages { system = "i686-linux"; };
41 pkgs_aarch64_linux = allPackages { system = "aarch64-linux"; };
42+ pkgs_armv6l_linux = allPackages { system = "armv6l-linux"; };
43+ pkgs_armv7l_linux = allPackages { system = "armv7l-linux"; };
44 pkgs_x86_64_darwin = allPackages { system = "x86_64-darwin"; };
45 pkgs_x86_64_freebsd = allPackages { system = "x86_64-freebsd"; };
46 pkgs_i686_freebsd = allPackages { system = "i686-freebsd"; };