Added OpenEXR and ilmbase. Actually, ilmbase is a part of OpenEXR
svn path=/nixpkgs/trunk/; revision=9457
This commit is contained in:
parent
203c236135
commit
8a0194b4e5
9
pkgs/development/libraries/ilmbase/default.nix
Normal file
9
pkgs/development/libraries/ilmbase/default.nix
Normal 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";
|
||||
}
|
@ -1,10 +1,11 @@
|
||||
{stdenv, fetchurl, zlib}:
|
||||
args: with args;
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "openexr-1.2.2";
|
||||
name = "openexr-1.6.0";
|
||||
src = fetchurl {
|
||||
url = http://savannah.nongnu.org/download/openexr/OpenEXR-1.2.2.tar.gz;
|
||||
md5 = "a2e56af78dc47c7294ff188c8f78394b";
|
||||
url = http://FIXME/openexr-1.6.0.tar.gz;
|
||||
sha256 = "0mzbwavkbj26g43ar5jhdrqlvw9nq1mxh9l2044sqlcyharcnfq4";
|
||||
};
|
||||
buildInputs = [zlib];
|
||||
propagatedBuildInputs = [pkgconfig zlib ilmbase];
|
||||
configureFlags = "--enable-shared --disable-static --enable-imfexamples";
|
||||
}
|
||||
|
@ -1717,6 +1717,10 @@ rec {
|
||||
inherit fetchurl stdenv;
|
||||
};
|
||||
|
||||
ilmbase = import ../development/libraries/ilmbase {
|
||||
inherit fetchurl stdenv;
|
||||
};
|
||||
|
||||
imlib = import ../development/libraries/imlib {
|
||||
inherit fetchurl stdenv libjpeg libtiff libungif libpng;
|
||||
inherit (xlibs) libX11 libXext xextproto;
|
||||
@ -1950,6 +1954,10 @@ rec {
|
||||
inherit fetchurl stdenv alsaLib autoconf automake libtool;
|
||||
};
|
||||
|
||||
openexr = import ../development/libraries/openexr {
|
||||
inherit fetchurl stdenv ilmbase zlib pkgconfig;
|
||||
};
|
||||
|
||||
openldap = import ../development/libraries/openldap {
|
||||
inherit fetchurl stdenv openssl cyrus_sasl db4;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user