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

27 lines
517 B
Nix
Raw Normal View History

2015-03-30 22:27:36 -07:00
{ stdenv, openexr, automake, autoconf, libtool, which }:
stdenv.mkDerivation {
2015-02-18 18:02:31 -08:00
name = "ilmbase-${openexr.source.version}";
2015-02-18 18:02:31 -08:00
src = openexr.source.src;
prePatch = ''
cd IlmBase
'';
preConfigure = ''
./bootstrap
'';
2015-03-30 22:27:36 -07:00
buildInputs = [ automake autoconf libtool which ];
patches = [ ./bootstrap.patch ];
2015-02-18 18:02:31 -08:00
meta = with stdenv.lib; {
homepage = http://www.openexr.com/;
license = licenses.bsd3;
platforms = platforms.all;
maintainers = with maintainers; [ wkennington ];
};
}