5d6259a973
All JARs in $pkg/share/java (for each $pkg in the build inputs) are added to $CLASSPATH. Thus, you can say buildInputs = [ setJavaClassPath someJavaDependency ]; and the JARs in someJavaDependency will be found automatically by tools like javac or ant. Note that the manual used to say that JARs should be installed in lib/java; this is now share/java, following the Debian policy: http://www.debian.org/doc/packaging-manuals/java-policy/x110.html The directory share/java makes more sense because JARs are architecture-independent. (Also, a quick grep shows that we were not exactly consistent about this in Nixpkgs.)
54 lines
1.4 KiB
Nix
54 lines
1.4 KiB
Nix
{ stdenv, fetchurl, unzip, ant, jdk, makeWrapper }:
|
|
|
|
let
|
|
version = "3.7.2";
|
|
date = "201202080800";
|
|
in
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "ecj-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "http://eclipse.ialto.org/eclipse/downloads/drops/R-${version}-${date}/ecjsrc-${version}.jar";
|
|
sha256 = "0swyysbyfmv068x8q1c5jqpwk5zb4xahg17aypx5rwb660f8fpbm";
|
|
};
|
|
|
|
buildInputs = [ unzip ant jdk makeWrapper ];
|
|
|
|
unpackPhase = ''
|
|
mkdir "${name}"
|
|
cd "${name}"
|
|
unzip "$src"
|
|
'';
|
|
|
|
# Use whatever compiler Ant knows.
|
|
buildPhase = "ant build";
|
|
|
|
installPhase = ''
|
|
mkdir -pv $out/share/java
|
|
cp -v *.jar $out/share/java
|
|
|
|
mkdir -pv $out/bin
|
|
makeWrapper ${jdk.jre}/bin/java $out/bin/ecj \
|
|
--add-flags "-cp $out/share/java/ecj.jar org.eclipse.jdt.internal.compiler.batch.Main"
|
|
'';
|
|
|
|
meta = {
|
|
description = "The Eclipse Compiler for Java (ECJ)";
|
|
|
|
longDescription = ''
|
|
ECJ is an incremental Java compiler. Implemented as an Eclipse
|
|
builder, it is based on technology evolved from VisualAge for Java
|
|
compiler. In particular, it allows users to run and debug code which
|
|
still contains unresolved errors.
|
|
'';
|
|
|
|
homepage = http://www.eclipse.org/jdt/core/index.php;
|
|
|
|
# http://www.eclipse.org/legal/epl-v10.html (free software, copyleft)
|
|
license = "EPLv1.0";
|
|
|
|
platforms = stdenv.lib.platforms.linux;
|
|
};
|
|
}
|