mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-09 11:03:15 +03:00
43 lines
1.1 KiB
Nix
43 lines
1.1 KiB
Nix
{
|
|
stdenv,
|
|
lib,
|
|
buildPackages,
|
|
cmake,
|
|
# explicitly depending on openexr_2 because ilmbase doesn't exist for v3
|
|
openexr_2,
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "ilmbase";
|
|
version = lib.getVersion openexr_2;
|
|
|
|
# the project no longer provides separate tarballs. We may even want to merge
|
|
# the ilmbase package into openexr in the future.
|
|
inherit (openexr_2) src patches;
|
|
|
|
outputs = [
|
|
"out"
|
|
"dev"
|
|
];
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
depsBuildBuild = [ buildPackages.stdenv.cc ];
|
|
|
|
# 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.hostPlatform.isx86_64;
|
|
|
|
preConfigure = ''
|
|
# Need to cd after patches for openexr patches to apply.
|
|
cd IlmBase
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "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;
|
|
insecure = true;
|
|
};
|
|
}
|