fork
Configure Feed
Select the types of activity you want to include in your feed.
lol
fork
Configure Feed
Select the types of activity you want to include in your feed.
1{ stdenv, requireFile, unzip, xorg }:
2
3assert stdenv.system == "i686-linux";
4
5stdenv.mkDerivation rec {
6 name = "sun-java-wtk-2.5.2_01";
7
8 src = requireFile {
9 url = meta.homepage;
10 name = "sun_java_wireless_toolkit-2.5.2_01-linuxi486.bin.sh";
11 sha256 = "1cjb9c27847wv0hq3j645ckn4di4vsfvp29fr4zmdqsnvk4ahvj1";
12 };
13
14 builder = ./builder.sh;
15
16 buildInputs = [ unzip ];
17
18 libraries = [ xorg.libXpm xorg.libXt xorg.libX11 xorg.libICE xorg.libSM stdenv.cc.cc ];
19
20 meta = {
21 homepage = http://java.sun.com/products/sjwtoolkit/download.html;
22 description = "Sun Java Wireless Toolkit 2.5.2_01 for CLDC";
23 license = stdenv.lib.licenses.unfree;
24 };
25}