From ac21aa9a8295c60ac846abcb26e54878dabe2f4f Mon Sep 17 00:00:00 2001 From: Shea Levy Date: Mon, 9 Dec 2013 13:25:07 -0500 Subject: [PATCH] Unpacking jce requires zip Signed-off-by: Shea Levy --- pkgs/development/compilers/jdk/jdk7-linux.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/development/compilers/jdk/jdk7-linux.nix b/pkgs/development/compilers/jdk/jdk7-linux.nix index 42a84fb16ab1..a7a5eccee9d5 100644 --- a/pkgs/development/compilers/jdk/jdk7-linux.nix +++ b/pkgs/development/compilers/jdk/jdk7-linux.nix @@ -1,6 +1,7 @@ { swingSupport ? true , stdenv , requireFile +, unzip , xlibs ? null , installjdk ? true , pluginSupport ? true @@ -54,6 +55,8 @@ stdenv.mkDerivation { else abort "jdk requires i686-linux or x86_64 linux"; + buildInputs = if installjce then [ unzip ] else []; + installPhase = '' cd .. if test -z "$installjdk"; then