add OpenEXR, a graphics library for high quality graphics made by ILM. kdelibs has this as an optional dependency...

svn path=/nixpkgs/trunk/; revision=4274
This commit is contained in:
Armijn Hemel 2005-11-12 22:04:57 +00:00
parent a07c80b6d9
commit b5bb94d25a

View File

@ -0,0 +1,10 @@
{stdenv, fetchurl, zlib}:
stdenv.mkDerivation {
name = "openexr-1.2.2";
src = fetchurl {
url = http://savannah.nongnu.org/download/openexr/OpenEXR-1.2.2.tar.gz;
md5 = "a2e56af78dc47c7294ff188c8f78394b";
};
buildInputs = [zlib];
}