nixpkgs/pkgs/development/eclipse/ecj/default.nix

60 lines
1.6 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, unzip, ant, jdk7, makeWrapper }:
let
2012-08-25 17:39:19 +00:00
version = "3.7.2";
date = "201202080800";
in
2014-01-03 15:15:46 +00:00
stdenv.mkDerivation rec {
name = "ecj-${version}";
2014-01-03 15:15:46 +00:00
src = fetchurl {
url = "http://eclipse.ialto.org/eclipse/downloads/drops/R-${version}-${date}/ecjsrc-${version}.jar";
sha256 = "0swyysbyfmv068x8q1c5jqpwk5zb4xahg17aypx5rwb660f8fpbm";
};
buildInputs = [ unzip ant jdk7 makeWrapper ];
2014-01-03 15:15:46 +00:00
unpackPhase = ''
mkdir "${name}"
cd "${name}"
unzip "$src"
'';
2014-01-03 15:15:46 +00:00
# Use whatever compiler Ant knows.
buildPhase = "ant build";
2014-01-03 15:15:46 +00:00
installPhase = ''
mkdir -pv $out/share/java
cp -v *.jar $out/share/java
2014-01-03 15:24:37 +00:00
mkdir -pv $out/bin
makeWrapper ${jdk7.jre}/bin/java $out/bin/ecj \
--add-flags "-cp $out/share/java/ecj.jar org.eclipse.jdt.internal.compiler.batch.Main"
# Add a setup hook that causes Ant to use the ECJ.
mkdir -p $out/nix-support
cat <<EOF > $out/nix-support/setup-hook
export NIX_ANT_ARGS="-Dbuild.compiler=org.eclipse.jdt.core.JDTCompilerAdapter \$NIX_ANT_ARGS"
EOF
2014-01-03 15:15:46 +00:00
'';
2014-01-03 15:15:46 +00:00
meta = {
description = "The Eclipse Compiler for Java (ECJ)";
2014-01-03 15:15:46 +00:00
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.
'';
2014-01-03 15:15:46 +00:00
homepage = http://www.eclipse.org/jdt/core/index.php;
2014-01-03 15:15:46 +00:00
# http://www.eclipse.org/legal/epl-v10.html (free software, copyleft)
license = stdenv.lib.licenses.epl10;
2014-01-03 15:24:37 +00:00
2014-07-15 09:51:27 +00:00
platforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin;
2014-01-03 15:15:46 +00:00
};
}