summary refs log tree commit diff
path: root/pkgs/development/compilers/jdk/jdk5-sun-linux.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/compilers/jdk/jdk5-sun-linux.nix')
-rw-r--r--pkgs/development/compilers/jdk/jdk5-sun-linux.nix29
1 files changed, 0 insertions, 29 deletions
diff --git a/pkgs/development/compilers/jdk/jdk5-sun-linux.nix b/pkgs/development/compilers/jdk/jdk5-sun-linux.nix
deleted file mode 100644
index b6c7759dc1500..0000000000000
--- a/pkgs/development/compilers/jdk/jdk5-sun-linux.nix
+++ /dev/null
@@ -1,29 +0,0 @@
-/**
- * This Nix expression requires the user to download the jdk
- * distribution to /tmp. Please obtain jdk-1_5_0_07-linux-i586.bin
- * from java.sun.com by hand and place it in /tmp. Blame Sun, not me.
- *
- * Note that this is not necessary if someone has already pushed a
- * binary.
- *
- * @author Martin Bravenboer <martin@cs.uu.nl>
- */
-{ swingSupport ? true
-, stdenv, fetchurl, unzip, libX11 ? null, libXext ? null
-}:
-
-assert stdenv.system == "i686-linux";
-
-assert swingSupport -> libX11 != null && libXext != null;
-
-(stdenv.mkDerivation {
-  name = "jdk-1.5.0";
-  builder = ./builder.sh;
-  filename = "jdk-1_5_0_07";
-  dirname = "jdk1.5.0_07";
-  pathname = "/tmp/jdk-1_5_0_07-linux-i586.bin";
-  md5 = "1325082c36b4adcb71bc5449ae4c68cf";
-  buildInputs = [unzip];
-  libraries =
-    (if swingSupport then [libX11 libXext] else []);
-} // {inherit swingSupport;})