summary refs log tree commit diff
path: root/pkgs/applications/editors/eclipse/default.nix
blob: 86570d90a31edad2d175849aaa843974191435d5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{fetchurl, stdenv, unzip}:

let {
  body =
    stdenv.mkDerivation {
      name = "eclipse-sdk-3.0.1";
      builder = ./builder.sh;
      src = bindist;
      inherit unzip;
   };

  bindist = 
    fetchurl {
      url = http://ftp-stud.fht-esslingen.de/pub/Mirrors/eclipse/R-3.0.1-200409161125/eclipse-SDK-3.0.1-linux-gtk.zip;
      md5 = "d0f743c972adf13e71a43b2dc6c9c55b";
    };
}