My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/libraries/wtk/default.nix

26 lines
747 B

{ lib, stdenv, requireFile, unzip, xorg }:
assert stdenv.hostPlatform.system == "i686-linux";
stdenv.mkDerivation rec {
pname = "sun-java-wtk";
version = "2.5.2_01";
src = requireFile {
url = "http://java.sun.com/products/sjwtoolkit/download.html";
name = "sun_java_wireless_toolkit-${version}-linuxi486.bin.sh";
sha256 = "1cjb9c27847wv0hq3j645ckn4di4vsfvp29fr4zmdqsnvk4ahvj1";
};
builder = ./builder.sh;
nativeBuildInputs = [ unzip ];
libraries = [ xorg.libXpm xorg.libXt xorg.libX11 xorg.libICE xorg.libSM stdenv.cc.cc ];
meta = {
homepage = "http://java.sun.com/products/sjwtoolkit/download.html";
description = "Sun Java Wireless Toolkit 2.5.2_01 for CLDC";
license = lib.licenses.unfree;
};
}