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

27 lines
517 B
Nix
Raw Normal View History

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