eclipses test instructions: don't rely on Nix experimental features

Prefer `nix-build`, which works out of the box, unlike `nix build`,
which fails until you enable experimental features.

+1 -1
+1 -1
pkgs/applications/editors/eclipse/default.nix
··· 9 9 # use ./update.sh to help with updating for each quarterly release 10 10 # 11 11 # then, to test: 12 - # for e in cpp dsl embedcpp modeling platform sdk java jee committers rcp; do for s in pkgs pkgsCross.aarch64-multiplatform; do echo; echo $s $e; nix build -f default.nix ${s}.eclipses.eclipse-${e} -o eclipse-${s}-${e}; done; done 12 + # for e in cpp dsl embedcpp modeling platform sdk java jee committers rcp; do for s in pkgs pkgsCross.aarch64-multiplatform; do echo; echo $s $e; nix-build -A ${s}.eclipses.eclipse-${e} -o eclipse-${s}-${e}; done; done 13 13 14 14 let 15 15 platform_major = "4";