Adding the Sun Wireless ToolKit for i686-linux at least.

svn path=/nixpkgs/trunk/; revision=14666
This commit is contained in:
Lluís Batlle i Rossell
2009-03-23 20:36:48 +00:00
parent 0474b4f148
commit 779b015a03
3 changed files with 67 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
{ stdenv, fetchurl, unzip, xlibs }:
assert stdenv.system == "i686-linux";
stdenv.mkDerivation {
name = "sun-java-wtk-2.5.2_01";
pathname = "/tmp/sun_java_wireless_toolkit-2.5.2_01-linuxi486.bin.sh";
md5 = "6b70b6e6d426eac121db8a087991589f";
builder = ./builder.sh;
buildInputs = [ unzip ];
libraries = [ xlibs.libXpm xlibs.libXt xlibs.libX11 xlibs.libICE xlibs.libSM stdenv.gcc.gcc ];
meta = {
homepage = http://java.sun.com/products/sjwtoolkit/download.html;
description = "Sun Java Wireless Toolkit 2.5.2_01 for CLDC";
};
}