2010-07-28 11:55:54 +00:00
|
|
|
{ stdenv, fetchurl, ilmbase }:
|
|
|
|
|
2008-01-30 17:20:48 +00:00
|
|
|
stdenv.mkDerivation {
|
2007-12-05 21:25:47 +00:00
|
|
|
name = "ctl-1.4.1";
|
|
|
|
|
2008-01-30 17:20:48 +00:00
|
|
|
src = fetchurl {
|
2013-07-13 23:48:32 +00:00
|
|
|
url = mirror://sourceforge/ampasctl/ctl-1.4.1.tar.gz;
|
2007-12-05 21:25:47 +00:00
|
|
|
sha256 = "16lzgbpxdyhykdwndj1i9vx3h4bfkxqqcrvasvgg70gb5raxj0mj";
|
|
|
|
};
|
|
|
|
|
2010-07-28 11:55:54 +00:00
|
|
|
patches = [ ./patch.patch ];
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ ilmbase ];
|
|
|
|
|
|
|
|
configureFlags = "--with-ilmbase-prefix=${ilmbase}";
|
|
|
|
|
2007-12-05 21:25:47 +00:00
|
|
|
#configurePhase = "
|
2008-01-30 17:20:48 +00:00
|
|
|
#export CXXFLAGS=\"-I${ilmbase}/include -L${ilmbase}/lib\"
|
2007-12-05 21:25:47 +00:00
|
|
|
#echo $CXXFLAGS
|
|
|
|
#unset configurePhase; configurePhase
|
|
|
|
#";
|
|
|
|
|
|
|
|
meta = {
|
2010-07-28 11:55:54 +00:00
|
|
|
description = "Color Transformation Language";
|
|
|
|
homepage = http://ampasctl.sourceforge.net;
|
|
|
|
license = "SOME OPEN SOURCE LICENSE"; # TODO which exactly is this?
|
2007-12-05 21:25:47 +00:00
|
|
|
};
|
2009-05-06 16:06:36 +00:00
|
|
|
|
2007-12-05 21:25:47 +00:00
|
|
|
}
|