nixpkgs/pkgs/development/libraries/ctl/default.nix
Marc Weber 16ca65b0c2 blender update to 2.48
adding some patches to compile dependencies and gav

svn path=/nixpkgs/trunk/; revision=15474
2009-05-06 16:06:36 +00:00

26 lines
711 B
Nix

args: with args;
stdenv.mkDerivation {
name = "ctl-1.4.1";
src = fetchurl {
url = http://surfnet.dl.sourceforge.net/sourceforge/ampasctl/ctl-1.4.1.tar.gz;
sha256 = "16lzgbpxdyhykdwndj1i9vx3h4bfkxqqcrvasvgg70gb5raxj0mj";
};
propagatedBuildInputs = [ilmbase];
configureFlags="--with-ilmbase-prefix=${ilmbase}";
#configurePhase = "
#export CXXFLAGS=\"-I${ilmbase}/include -L${ilmbase}/lib\"
#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?
};
patches = [ ./patch.patch ];
}