2019-05-13 23:30:40 +01: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 13:27:47 +01:00
|
|
|
|
2010-07-28 19:01:17 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2018-08-16 10:52:46 +01:00
|
|
|
name = "openexr-${version}";
|
|
|
|
version = lib.getVersion ilmbase;
|
2015-02-19 02:02:05 +00:00
|
|
|
|
2015-07-02 13:27:47 +01:00
|
|
|
src = fetchurl {
|
2018-08-16 10:52:46 +01:00
|
|
|
url = "https://github.com/openexr/openexr/releases/download/v${version}/${name}.tar.gz";
|
|
|
|
sha256 = "19jywbs9qjvsbkvlvzayzi81s976k53wg53vw4xj66lcgylb6v7x";
|
2015-07-02 13:27:47 +01:00
|
|
|
};
|
2015-02-19 02:02:05 +00:00
|
|
|
|
2017-12-10 09:57:29 +00:00
|
|
|
patches = [
|
|
|
|
./bootstrap.patch
|
|
|
|
];
|
|
|
|
|
2016-09-01 14:29:00 +01:00
|
|
|
outputs = [ "bin" "dev" "out" "doc" ];
|
2015-07-26 13:11:20 +01:00
|
|
|
|
2019-05-13 23:30:40 +01: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-19 02:02:05 +00:00
|
|
|
preConfigure = ''
|
2018-08-16 10:52:46 +01:00
|
|
|
patchShebangs ./bootstrap
|
2015-02-19 02:02:05 +00:00
|
|
|
./bootstrap
|
|
|
|
'';
|
|
|
|
|
2019-05-10 18:16:06 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig autoconf automake libtool ];
|
2015-02-19 02:02:05 +00:00
|
|
|
propagatedBuildInputs = [ ilmbase zlib ];
|
2015-03-31 06:27:36 +01:00
|
|
|
|
2015-07-02 13:27:47 +01:00
|
|
|
enableParallelBuilding = true;
|
2018-04-25 04:20:18 +01:00
|
|
|
doCheck = false; # fails 1 of 1 tests
|
2015-07-02 13:27:47 +01:00
|
|
|
|
2015-02-19 02:02:05 +00:00
|
|
|
meta = with stdenv.lib; {
|
2019-07-10 20:52:51 +01:00
|
|
|
homepage = https://www.openexr.com/;
|
2015-02-19 02:02:05 +00:00
|
|
|
license = licenses.bsd3;
|
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
2005-11-12 22:04:57 +00:00
|
|
|
}
|