nixpkgs/pkgs/development/libraries/openexr/default.nix

56 lines
1.5 KiB
Nix
Raw Normal View History

{ 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
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
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-02-18 18:02:05 -08:00
patches = [
./bootstrap.patch
];
outputs = [ "bin" "dev" "out" "doc" ];
2015-07-26 05:11:20 -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
enableParallelBuilding = true;
doCheck = false; # fails 1 of 1 tests
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;
};
}