summary refs log tree commit diff
path: root/pkgs/development/libraries/openexr/default.nix
blob: 63a8c11a341613d2ef2b43899d652e6f9c4d97ca (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{ stdenv, callPackage, autoconf, automake, libtool, pkgconfig, zlib, ilmbase }:
let
  source = callPackage ./source.nix { };
in
stdenv.mkDerivation rec {
  name = "openexr-${source.version}";
  
  src = source.src;

  prePatch = ''
    cd OpenEXR
  '';

  preConfigure = ''
    ./bootstrap
  '';

  configureFlags = [ "--enable-imfexamples" ];
  
  buildInputs = [ autoconf automake libtool pkgconfig ];
  propagatedBuildInputs = [ ilmbase zlib ];

  patches = [ ./bootstrap.patch ];
  
  meta = with stdenv.lib; {
    homepage = http://www.openexr.com/;
    license = licenses.bsd3;
    platforms = platforms.all;
    maintainers = with maintainers; [ wkennington ];
  };

  passthru.source = source;
}