forked from mirrors/nixpkgs
Added the Eclipse JDT SDK
svn path=/nixpkgs/trunk/; revision=3785
This commit is contained in:
parent
059d1d391b
commit
a7eba5ec59
7
pkgs/development/eclipse/jdt-sdk/builder.sh
Executable file
7
pkgs/development/eclipse/jdt-sdk/builder.sh
Executable file
|
@ -0,0 +1,7 @@
|
|||
set -e
|
||||
|
||||
. $stdenv/setup
|
||||
|
||||
unzip $src
|
||||
mkdir $out
|
||||
mv eclipse $out/
|
12
pkgs/development/eclipse/jdt-sdk/default.nix
Normal file
12
pkgs/development/eclipse/jdt-sdk/default.nix
Normal file
|
@ -0,0 +1,12 @@
|
|||
{stdenv, fetchurl, unzip}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "eclipse-jdt-sdk-3.1";
|
||||
builder = ./builder.sh;
|
||||
src = fetchurl {
|
||||
url = http://sunsite.informatik.rwth-aachen.de/eclipse/downloads/drops/R-3.1-200506271435/eclipse-JDT-SDK-3.1.zip;
|
||||
md5 = "665b51beaa718b2fec6b0155ed369f76";
|
||||
};
|
||||
|
||||
buildInputs = [unzip];
|
||||
}
|
|
@ -482,11 +482,15 @@ rec {
|
|||
inherit fetchurl stdenv;
|
||||
};
|
||||
|
||||
ecj = (import ../development/compilers/ecj) {
|
||||
ecj = (import ../development/eclipse/ecj) {
|
||||
inherit fetchurl stdenv unzip j2re;
|
||||
ant = apacheAntBlackdown14;
|
||||
};
|
||||
|
||||
jdtsdk = (import ../development/eclipse/jdt-sdk) {
|
||||
inherit fetchurl stdenv unzip;
|
||||
};
|
||||
|
||||
blackdown = (import ../development/compilers/blackdown) {
|
||||
inherit fetchurl stdenv;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue