summary refs log tree commit diff
path: root/pkgs/development/libraries/ilmbase/default.nix
blob: 9d2479c2e0b365b975d3b40a05f98de08af139d8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{ stdenv
, buildPackages
, cmake
, libtool
, openexr
}:

stdenv.mkDerivation rec {
  pname = "ilmbase";
  version = stdenv.lib.getVersion openexr;

  # the project no longer provides separate tarballs. We may even want to merge
  # the ilmbase package into openexr in the future.
  src = openexr.src;

  sourceRoot = "source/IlmBase";

  outputs = [ "out" "dev" ];

  nativeBuildInputs = [ cmake libtool ];
  depsBuildBuild = [ buildPackages.stdenv.cc ];

  patches = [ ./cross.patch ];

  # fails 1 out of 1 tests with
  # "lt-ImathTest: testBoxAlgo.cpp:892: void {anonymous}::boxMatrixTransform(): Assertion `b21 == b2' failed"
  # at least on i686. spooky!
  doCheck = stdenv.isx86_64;

  meta = with stdenv.lib; {
    description = " A library for 2D/3D vectors and matrices and other mathematical objects, functions and data types for computer graphics";
    homepage = "https://www.openexr.com/";
    license = licenses.bsd3;
    platforms = platforms.all;
  };
}