* Export swingSupport attribute.

svn path=/nixpkgs/trunk/; revision=4032
This commit is contained in:
Eelco Dolstra 2005-10-08 13:31:39 +00:00
parent e0c0a344c4
commit 7112b86997

View File

@ -16,7 +16,7 @@ assert stdenv.system == "i686-linux";
assert swingSupport -> libX11 != null && libXext != null; assert swingSupport -> libX11 != null && libXext != null;
stdenv.mkDerivation { (stdenv.mkDerivation {
name = "jdk-1.5.0"; name = "jdk-1.5.0";
builder = ./builder.sh; builder = ./builder.sh;
filename = "jdk-1_5_0_05"; filename = "jdk-1_5_0_05";
@ -26,4 +26,4 @@ stdenv.mkDerivation {
buildInputs = [unzip patchelf]; buildInputs = [unzip patchelf];
libraries = libraries =
(if swingSupport then [libX11 libXext] else []); (if swingSupport then [libX11 libXext] else []);
} } // {inherit swingSupport;})