* Added the j2sdk of Sun for Linux. Downloading this thing is

a big problem, so I decided to require to user to get the
          file and put it in some location in the file system. wget
          doesn't seem to accept the file scheme however, so I had to
          move the copying into the builder itself. The builder checks
          the md5 hash of the downloaded file. Maybe having a separate
          'fetchfile' would be useful to make a file in the outside
          world pure. I tried to add this to build-support, but this
          obviously did not work. I still committed it. Just remove it
          if you think that it sucks.

svn path=/nixpkgs/trunk/; revision=716
This commit is contained in:
Martin Bravenboer
2004-01-24 23:46:00 +00:00
parent 02a4d8ece5
commit 067726f3e2
7 changed files with 82 additions and 1 deletions

View File

@@ -8,7 +8,7 @@ derivation {
system = stdenv.system;
builder = ./builder.sh;
src = fetchurl {
url = http://www.java.sun.com/webapps/download/AutoDL?BundleId=9500;
url = http://java.sun.com/webapps/download/AutoDL?BundleId=9500;
md5 = "b4aae3fcda73d976bd6ae6349b36a90c";
};
stdenv = stdenv;