Fix impurity in OpenEXR + IlmBase

This commit is contained in:
Spencer Whitt
2015-03-31 01:27:36 -04:00
parent dcde8a967f
commit 4012535571
4 changed files with 36 additions and 2 deletions
@@ -1,4 +1,4 @@
{ stdenv, openexr, automake, autoconf, libtool }:
{ stdenv, openexr, automake, autoconf, libtool, which }:
stdenv.mkDerivation {
name = "ilmbase-${openexr.source.version}";
@@ -13,7 +13,9 @@ stdenv.mkDerivation {
./bootstrap
'';
buildInputs = [ automake autoconf libtool ];
buildInputs = [ automake autoconf libtool which ];
patches = [ ./bootstrap.patch ];
meta = with stdenv.lib; {
homepage = http://www.openexr.com/;