pkgs/release-lib: evaluate nixpkgs on armv6l and armv7l (#32641)

authored by Ben Wolsieffer and committed by Tuomas Tynkkynen b1a2e1ca 810ec3f8

+4
+4
pkgs/top-level/release-lib.nix
··· 27 27 if system == "x86_64-linux" then pkgs_x86_64_linux 28 28 else if system == "i686-linux" then pkgs_i686_linux 29 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 30 32 else if system == "x86_64-darwin" then pkgs_x86_64_darwin 31 33 else if system == "x86_64-freebsd" then pkgs_x86_64_freebsd 32 34 else if system == "i686-freebsd" then pkgs_i686_freebsd ··· 37 39 pkgs_x86_64_linux = allPackages { system = "x86_64-linux"; }; 38 40 pkgs_i686_linux = allPackages { system = "i686-linux"; }; 39 41 pkgs_aarch64_linux = allPackages { system = "aarch64-linux"; }; 42 + pkgs_armv6l_linux = allPackages { system = "armv6l-linux"; }; 43 + pkgs_armv7l_linux = allPackages { system = "armv7l-linux"; }; 40 44 pkgs_x86_64_darwin = allPackages { system = "x86_64-darwin"; }; 41 45 pkgs_x86_64_freebsd = allPackages { system = "x86_64-freebsd"; }; 42 46 pkgs_i686_freebsd = allPackages { system = "i686-freebsd"; };