2019-05-13 15:30:40 -07:00
|
|
|
{ lib, stdenv, buildPackages, fetchurl, autoconf, automake, libtool, pkgconfig, zlib, ilmbase, }:
|
|
|
|
|
|
|
|
let
|
|
|
|
# Doesn't really do anything when not crosscompiling
|
|
|
|
emulator = stdenv.hostPlatform.emulator buildPackages;
|
|
|
|
in
|
2015-07-02 05:27:47 -07:00
|
|
|
|
2010-07-28 11:01:17 -07:00
|
|
|
stdenv.mkDerivation rec {
|
2018-08-16 02:52:46 -07:00
|
|
|
name = "openexr-${version}";
|
|
|
|
version = lib.getVersion ilmbase;
|
2015-02-18 18:02:05 -08:00
|
|
|
|
2015-07-02 05:27:47 -07:00
|
|
|
src = fetchurl {
|
2018-08-16 02:52:46 -07:00
|
|
|
url = "https://github.com/openexr/openexr/releases/download/v${version}/${name}.tar.gz";
|
|
|
|
sha256 = "19jywbs9qjvsbkvlvzayzi81s976k53wg53vw4xj66lcgylb6v7x";
|
2015-07-02 05:27:47 -07:00
|
|
|
};
|
2015-02-18 18:02:05 -08:00
|
|
|
|
2017-12-10 01:57:29 -08:00
|
|
|
patches = [
|
|
|
|
./bootstrap.patch
|
|
|
|
];
|
|
|
|
|
2016-09-01 06:29:00 -07:00
|
|
|
outputs = [ "bin" "dev" "out" "doc" ];
|
2015-07-26 05:11:20 -07:00
|
|
|
|
2019-05-13 15:30:40 -07:00
|
|
|
# Needed because there are some generated sources. Solution: just run them under QEMU.
|
|
|
|
postPatch = ''
|
|
|
|
for file in b44ExpLogTable dwaLookups
|
|
|
|
do
|
|
|
|
# Ecape for both sh and Automake
|
|
|
|
emu=${lib.escapeShellArg (lib.replaceStrings ["$"] ["$$"] emulator)}
|
|
|
|
before="./$file > $file.h"
|
|
|
|
after="$emu $before"
|
|
|
|
substituteInPlace IlmImf/Makefile.am \
|
|
|
|
--replace "$before" "$after"
|
|
|
|
done
|
|
|
|
|
|
|
|
# Make sure the patch succeeded
|
|
|
|
[[ $(grep "$emu" IlmImf/Makefile.am | wc -l) = 2 ]]
|
|
|
|
'';
|
|
|
|
|
2015-02-18 18:02:05 -08:00
|
|
|
preConfigure = ''
|
2018-08-16 02:52:46 -07:00
|
|
|
patchShebangs ./bootstrap
|
2015-02-18 18:02:05 -08:00
|
|
|
./bootstrap
|
|
|
|
'';
|
|
|
|
|
2019-05-10 10:16:06 -07:00
|
|
|
nativeBuildInputs = [ pkgconfig autoconf automake libtool ];
|
2015-02-18 18:02:05 -08:00
|
|
|
propagatedBuildInputs = [ ilmbase zlib ];
|
2015-03-30 22:27:36 -07:00
|
|
|
|
2015-07-02 05:27:47 -07:00
|
|
|
enableParallelBuilding = true;
|
2018-04-24 20:20:18 -07:00
|
|
|
doCheck = false; # fails 1 of 1 tests
|
2015-07-02 05:27:47 -07:00
|
|
|
|
2015-02-18 18:02:05 -08:00
|
|
|
meta = with stdenv.lib; {
|
2019-07-10 12:52:51 -07:00
|
|
|
homepage = https://www.openexr.com/;
|
2015-02-18 18:02:05 -08:00
|
|
|
license = licenses.bsd3;
|
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
2005-11-12 14:04:57 -08:00
|
|
|
}
|