about summary refs log tree commit diff
path: root/doc/languages-frameworks
diff options
context:
space:
mode:
authorAustin Seipp <aseipp@pobox.com>2018-03-29 21:22:16 -0500
committerAustin Seipp <aseipp@pobox.com>2018-04-01 15:18:47 -0500
commitdc40fca23ff77bcbf525543975907511c76fb307 (patch)
treea5715b21cde87abc4ee0afaf5618feff995a8987 /doc/languages-frameworks
parentebbf7078e2434ca1cfc44ace99474f52cbc64660 (diff)
downloadnixlib-dc40fca23ff77bcbf525543975907511c76fb307.tar
nixlib-dc40fca23ff77bcbf525543975907511c76fb307.tar.gz
nixlib-dc40fca23ff77bcbf525543975907511c76fb307.tar.bz2
nixlib-dc40fca23ff77bcbf525543975907511c76fb307.tar.lz
nixlib-dc40fca23ff77bcbf525543975907511c76fb307.tar.xz
nixlib-dc40fca23ff77bcbf525543975907511c76fb307.tar.zst
nixlib-dc40fca23ff77bcbf525543975907511c76fb307.zip
nixpkgs: remove ancient 'ecj' package
Nobody has stepped up to keep maintaining this and it's several
years old, and the last strict Java 7 dependency, as it won't work
with newer versions without an update.

Signed-off-by: Austin Seipp <aseipp@pobox.com>
Diffstat (limited to 'doc/languages-frameworks')
-rw-r--r--doc/languages-frameworks/java.xml11
1 files changed, 1 insertions, 10 deletions
diff --git a/doc/languages-frameworks/java.xml b/doc/languages-frameworks/java.xml
index 2d40a254cedf..2507cc2c469a 100644
--- a/doc/languages-frameworks/java.xml
+++ b/doc/languages-frameworks/java.xml
@@ -62,16 +62,7 @@ depending on the JDK at runtime.</para>
 
 <para>It is possible to use a different Java compiler than
 <command>javac</command> from the OpenJDK.  For instance, to use the
-Eclipse Java Compiler:
-
-<programlisting>
-buildInputs = [ jre ant ecj ];
-</programlisting>
-
-(Note that here you don’t need the full JDK as an input, but just the
-JRE.)  The ECJ has a stdenv setup hook that sets some environment
-variables to cause Ant to use ECJ, but this doesn’t work with all Ant
-files.  Similarly, you can use the GNU Java Compiler:
+GNU Java Compiler:
 
 <programlisting>
 buildInputs = [ gcj ant ];