Skip to content

Commit

Permalink
eclipses test instructions: don't rely on Nix experimental features
Browse files Browse the repository at this point in the history
Prefer `nix-build`, which works out of the box, unlike `nix build`,
which fails until you enable experimental features.
  • Loading branch information
bjornfor committed Mar 10, 2024
1 parent 79435d8 commit ce94aa7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkgs/applications/editors/eclipse/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
# use ./update.sh to help with updating for each quarterly release
#
# then, to test:
# 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
# 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

let
platform_major = "4";
Expand Down

0 comments on commit ce94aa7

Please sign in to comment.