1{ stdenv, callPackage, cmake, pkgconfig, ilmbase, libtiff, openexr }:
2
3let
4 source = callPackage ./source.nix { };
5in
6stdenv.mkDerivation {
7 name = "ctl-${source.version}";
8
9 src = source.src;
10
11 buildInputs = [ cmake pkgconfig libtiff ilmbase openexr ];
12
13 meta = with stdenv.lib; {
14 description = "Color Transformation Language";
15 homepage = http://ampasctl.sourceforge.net;
16 license = "A.M.P.A.S";
17 platforms = platforms.all;
18 maintainers = with maintainers; [ wkennington ];
19 };
20
21 passthru.source = source;
22}