522acfd2f4
Conflicts: pkgs/applications/version-management/git-and-tools/git/default.nix pkgs/top-level/all-packages.nix
30 lines
715 B
Nix
30 lines
715 B
Nix
{ stdenv, fetchurl, ilmbase }:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "ctl-1.4.1";
|
|
|
|
src = fetchurl {
|
|
url = mirror://sourceforge/ampasctl/ctl-1.4.1.tar.gz;
|
|
sha256 = "16lzgbpxdyhykdwndj1i9vx3h4bfkxqqcrvasvgg70gb5raxj0mj";
|
|
};
|
|
|
|
patches = [ ./patch.patch ./gcc47.patch ];
|
|
|
|
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?
|
|
};
|
|
|
|
}
|