nixpkgs/pkgs/development/libraries/ilmbase/default.nix
2015-02-18 18:03:34 -08:00

25 lines
468 B
Nix

{ stdenv, openexr, automake, autoconf, libtool }:
stdenv.mkDerivation {
name = "ilmbase-${openexr.source.version}";
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 ];
};
}