2015-02-19 02:02:31 +00:00
|
|
|
{ stdenv, openexr, automake, autoconf, libtool }:
|
2009-04-22 00:18:09 +01:00
|
|
|
|
2007-10-12 21:33:03 +01:00
|
|
|
stdenv.mkDerivation {
|
2015-02-19 02:02:31 +00:00
|
|
|
name = "ilmbase-${openexr.source.version}";
|
2009-04-22 00:18:09 +01:00
|
|
|
|
2015-02-19 02:02:31 +00:00
|
|
|
src = openexr.source.src;
|
|
|
|
|
|
|
|
prePatch = ''
|
|
|
|
cd IlmBase
|
|
|
|
'';
|
|
|
|
|
|
|
|
preConfigure = ''
|
|
|
|
./bootstrap
|
|
|
|
'';
|
|
|
|
|
|
|
|
buildInputs = [ automake autoconf libtool ];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = http://www.openexr.com/;
|
|
|
|
license = licenses.bsd3;
|
|
|
|
platforms = platforms.all;
|
|
|
|
maintainers = with maintainers; [ wkennington ];
|
2009-04-22 00:18:09 +01:00
|
|
|
};
|
2007-10-12 21:33:03 +01:00
|
|
|
}
|