summary refs log tree commit diff
path: root/pkgs/applications/editors/eclipse/default.nix
blob: cee38c18e5425410aef7e234e3509f11ea7da097 (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://catamaran.labs.cs.uu.nl/dist/tarballs/eclipse-SDK-3.0.1-linux-gtk.zip;
      md5 = "d0f743c972adf13e71a43b2dc6c9c55b";
    };
}