2008-01-30 18:20:48 +01:00
|
|
|
args: with args;
|
|
|
|
stdenv.mkDerivation {
|
2007-12-05 22:25:47 +01:00
|
|
|
name = "openexr_ctl-1.0.1";
|
|
|
|
|
2008-01-30 18:20:48 +01:00
|
|
|
src = fetchurl {
|
2007-12-05 22:25:47 +01:00
|
|
|
url = http://kent.dl.sourceforge.net/sourceforge/ampasctl/openexr_ctl-1.0.1.tar.gz;
|
|
|
|
sha256 = "1jg9smpaplal8l14djp184wzk11nwd3dvm4lhkp69kjgw8jdd21d";
|
|
|
|
};
|
|
|
|
|
2008-01-30 18:20:48 +01:00
|
|
|
propagatedBuildInputs = [ilmbase];
|
|
|
|
buildInputs = [openexr ctl];
|
|
|
|
configureFlags="--with-ilmbase-prefix=${ilmbase}";
|
2007-12-05 22:25:47 +01:00
|
|
|
#configurePhase = "
|
2008-01-30 18:20:48 +01:00
|
|
|
#export CXXFLAGS=\"-I${ilmbase}/include -L${ilmbase}/lib\"
|
2007-12-05 22:25:47 +01:00
|
|
|
#echo $CXXFLAGS
|
|
|
|
#unset configurePhase; configurePhase
|
|
|
|
#";
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Color Transformation Language";
|
|
|
|
homepage = http://ampasctl.sourceforge.net;
|
|
|
|
license = "SOME OPEN SOURCE LICENSE"; # TODO which exactly is this?
|
|
|
|
};
|
|
|
|
}
|