Added OpenEXR and ilmbase. Actually, ilmbase is a part of OpenEXR

svn path=/nixpkgs/trunk/; revision=9457
This commit is contained in:
Yury G. Kudryashov 2007-10-12 20:33:03 +00:00
parent 203c236135
commit 8a0194b4e5
3 changed files with 23 additions and 5 deletions

View File

@ -0,0 +1,9 @@
args: with args;
stdenv.mkDerivation {
name = "ilmbase-1.0.0";
src = fetchurl {
url = http://FIXME/ilmbase-1.0.0.tar.gz;
sha256 = "1dpgi3hbff9nflg95r2smb6ssg5bh5g8mj9dxh896w29nh08ipnz";
};
configureFlags = "--enable-shared --disable-static";
}

View File

@ -1,10 +1,11 @@
{stdenv, fetchurl, zlib}: args: with args;
stdenv.mkDerivation { stdenv.mkDerivation {
name = "openexr-1.2.2"; name = "openexr-1.6.0";
src = fetchurl { src = fetchurl {
url = http://savannah.nongnu.org/download/openexr/OpenEXR-1.2.2.tar.gz; url = http://FIXME/openexr-1.6.0.tar.gz;
md5 = "a2e56af78dc47c7294ff188c8f78394b"; sha256 = "0mzbwavkbj26g43ar5jhdrqlvw9nq1mxh9l2044sqlcyharcnfq4";
}; };
buildInputs = [zlib]; propagatedBuildInputs = [pkgconfig zlib ilmbase];
configureFlags = "--enable-shared --disable-static --enable-imfexamples";
} }

View File

@ -1717,6 +1717,10 @@ rec {
inherit fetchurl stdenv; inherit fetchurl stdenv;
}; };
ilmbase = import ../development/libraries/ilmbase {
inherit fetchurl stdenv;
};
imlib = import ../development/libraries/imlib { imlib = import ../development/libraries/imlib {
inherit fetchurl stdenv libjpeg libtiff libungif libpng; inherit fetchurl stdenv libjpeg libtiff libungif libpng;
inherit (xlibs) libX11 libXext xextproto; inherit (xlibs) libX11 libXext xextproto;
@ -1950,6 +1954,10 @@ rec {
inherit fetchurl stdenv alsaLib autoconf automake libtool; inherit fetchurl stdenv alsaLib autoconf automake libtool;
}; };
openexr = import ../development/libraries/openexr {
inherit fetchurl stdenv ilmbase zlib pkgconfig;
};
openldap = import ../development/libraries/openldap { openldap = import ../development/libraries/openldap {
inherit fetchurl stdenv openssl cyrus_sasl db4; inherit fetchurl stdenv openssl cyrus_sasl db4;
}; };