ctl: Update to 1.5.2

wip/yesman
William A. Kennington III 9 years ago
parent e9c1a56f97
commit f94d0c3aa7
  1. 31
      pkgs/development/libraries/ctl/default.nix
  2. 15
      pkgs/development/libraries/ctl/gcc47.patch
  3. 24
      pkgs/development/libraries/ctl/patch.patch
  4. 11
      pkgs/development/libraries/ctl/source.nix
  5. 2
      pkgs/top-level/all-packages.nix

@ -1,29 +1,22 @@
{ stdenv, fetchurl, ilmbase }:
{ stdenv, callPackage, cmake, pkgconfig, ilmbase, libtiff, openexr }:
let
source = callPackage ./source.nix { };
in
stdenv.mkDerivation {
name = "ctl-1.4.1";
name = "ctl-${source.version}";
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}";
src = source.src;
#configurePhase = "
#export CXXFLAGS=\"-I${ilmbase}/include -L${ilmbase}/lib\"
#echo $CXXFLAGS
#unset configurePhase; configurePhase
#";
buildInputs = [ cmake pkgconfig libtiff ilmbase openexr ];
meta = {
meta = with stdenv.lib; {
description = "Color Transformation Language";
homepage = http://ampasctl.sourceforge.net;
license = "SOME OPEN SOURCE LICENSE"; # TODO which exactly is this?
license = "A.M.P.A.S";
platforms = platforms.all;
maintainers = with maintainers; [ wkennington ];
};
passthru.source = source;
}

@ -1,15 +0,0 @@
https://bugs.gentoo.org/426368
IlmCtl/CtlInterpreter.cpp | 1 +
1 file changed, 1 insertion(+)
--- a/IlmCtl/CtlInterpreter.cpp
+++ b/IlmCtl/CtlInterpreter.cpp
@@ -64,6 +64,7 @@
#include <fstream>
#include <algorithm>
#include <cassert>
+#include <unistd.h>
#ifdef WIN32
#include <io.h>

@ -1,24 +0,0 @@
diff --git a/IlmCtl/CtlLex.cpp b/IlmCtl/CtlLex.cpp
index e662d22..a47311a 100644
--- a/IlmCtl/CtlLex.cpp
+++ b/IlmCtl/CtlLex.cpp
@@ -57,6 +57,7 @@
#include <CtlLContext.h>
#include <iomanip>
#include <cassert>
+#include <stdlib.h>
#if 0
diff --git a/IlmCtlSimd/CtlSimdReg.h b/IlmCtlSimd/CtlSimdReg.h
index 6b000b2..8a39f7c 100644
--- a/IlmCtlSimd/CtlSimdReg.h
+++ b/IlmCtlSimd/CtlSimdReg.h
@@ -52,6 +52,7 @@
#include <typeinfo>
#include <CtlExc.h>
#include <Iex.h>
+#include <memory.h>
//-----------------------------------------------------------------------------
//

@ -0,0 +1,11 @@
{ fetchFromGitHub }:
rec {
version = "1.5.2";
src = fetchFromGitHub {
owner = "ampas";
repo = "CTL";
rev = "ctl-${version}";
sha256 = "0a698rd1cmixh3mk4r1xa6rjli8b8b7dbx89pb43xkgqxy67glwx";
};
}

@ -6885,7 +6885,7 @@ let
};
# this ctl version is needed by openexr_viewers
openexr_ctl = callPackage ../development/libraries/openexr_ctl { };
openexr_ctl = ctl;
openexr = callPackage ../development/libraries/openexr { };

Loading…
Cancel
Save