openjdk: Add 'free' to $PATH for the build

svn path=/nixpkgs/trunk/; revision=28029
This commit is contained in:
Shea Levy 2011-08-01 01:08:07 +00:00
parent 23e378a3c4
commit 11f0ca9320

View file

@ -1,4 +1,4 @@
{stdenv, fetchurl, unzip}:
{stdenv, fetchurl, unzip, procps}:
stdenv.mkDerivation {
name = "openjdk-7b127";
@ -8,5 +8,5 @@ stdenv.mkDerivation {
sha256 = "1qhwlz9y5qmwmja4qnxg6sn3pgsg1i11fb9j41w8l26acyhk34rs";
};
buildInputs = [ unzip ];
buildInputs = [ unzip procps ];
}