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