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 {
pname = "openexr";
2018-08-16 11:52:46 +02:00
version = lib.getVersion ilmbase;
2015-02-19 03:02:05 +01:00
src = fetchurl {
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-02-19 03:02:05 +01:00
patches = [
./bootstrap.patch
];
outputs = [ "bin" "dev" "out" "doc" ];
2015-07-26 14:11:20 +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
enableParallelBuilding = true;
doCheck = false; # fails 1 of 1 tests
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;
};
}