summary refs log tree commit diff
path: root/pkgs/development/compilers/openjdk
diff options
context:
space:
mode:
authorShea Levy <shea@shealevy.com>2011-08-01 01:16:10 +0000
committerShea Levy <shea@shealevy.com>2011-08-01 01:16:10 +0000
commit2e0252011dffed077b30ae3d4a3d0a042a384954 (patch)
tree85febfb30e9d06c28c0edf68f8dcedda068cc5d3 /pkgs/development/compilers/openjdk
parent9e06eb71d63a3b888e5afbd7c51c9790cf5039f2 (diff)
downloadnixlib-2e0252011dffed077b30ae3d4a3d0a042a384954.tar
nixlib-2e0252011dffed077b30ae3d4a3d0a042a384954.tar.gz
nixlib-2e0252011dffed077b30ae3d4a3d0a042a384954.tar.bz2
nixlib-2e0252011dffed077b30ae3d4a3d0a042a384954.tar.lz
nixlib-2e0252011dffed077b30ae3d4a3d0a042a384954.tar.xz
nixlib-2e0252011dffed077b30ae3d4a3d0a042a384954.tar.zst
nixlib-2e0252011dffed077b30ae3d4a3d0a042a384954.zip
Add libX11 to buildInputs
svn path=/nixpkgs/trunk/; revision=28088
Diffstat (limited to 'pkgs/development/compilers/openjdk')
-rw-r--r--pkgs/development/compilers/openjdk/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/development/compilers/openjdk/default.nix b/pkgs/development/compilers/openjdk/default.nix
index 71116c3adbc9..d5168c287e5f 100644
--- a/pkgs/development/compilers/openjdk/default.nix
+++ b/pkgs/development/compilers/openjdk/default.nix
@@ -11,6 +11,7 @@
 , which
 , jdk
 , nettools
+, libX11
 }:
 
 stdenv.mkDerivation rec {
@@ -21,7 +22,7 @@ stdenv.mkDerivation rec {
     sha256 = "1qhwlz9y5qmwmja4qnxg6sn3pgsg1i11fb9j41w8l26acyhk34rs";
   };
 
-  buildInputs = [ unzip procps ant which zip nettools alsaLib ];
+  buildInputs = [ unzip procps ant which zip nettools alsaLib libX11 ];
 
   postUnpack = ''
     sed -i -e "s@/usr/bin/test@${coreutils}/bin/test@" \