mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-04 12:03:21 +00:00
d9393731e6
Tested with musl. I PRd the patch upstream: https://github.com/AcademySoftwareFoundation/openexr/pull/798
42 lines
1.1 KiB
Nix
42 lines
1.1 KiB
Nix
{ stdenv
|
|
, lib
|
|
, 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
|
|
] ++ lib.optionals (stdenv.hostPlatform.isLinux && stdenv.hostPlatform.libc != "glibc") [
|
|
openexr.non_glibc_fpstate_patch # see description of this patch in `openexr`
|
|
];
|
|
|
|
# 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;
|
|
};
|
|
}
|