5bca69ac34
Unneded args.something replaced with args: with args; line. After this line args is the only place where we can recieve variables from. Also removed several buildInputs = []; lines. svn path=/nixpkgs/trunk/; revision=10415
29 lines
806 B
Nix
29 lines
806 B
Nix
args: with args;
|
|
stdenv.mkDerivation {
|
|
name = "python-imaging-1.1.6";
|
|
|
|
src = fetchurl {
|
|
url = http://effbot.org/downloads/Imaging-1.1.6.tar.gz;
|
|
sha256 = "141zidl3s9v4vfi3nsbg42iq1lc2a932gprqr1kij5hrnn53bmvx";
|
|
};
|
|
|
|
buildInputs = [python zlib libtiff libjpeg freetype];
|
|
|
|
configurePhase = "
|
|
sed -e 's@FREETYPE_ROOT = None@FREETYPE_ROOT = libinclude(\"${freetype}\")@' -i setup.py
|
|
sed -e 's@JPEG_ROOT = None@JPEG_ROOT = libinclude(\"${libjpeg}\")@' -i setup.py
|
|
sed -e 's@TIFF_ROOT = None@TIFF_ROOT = libinclude(\"${libtiff}\")@' -i setup.py
|
|
sed -e 's@ZLIB_ROOT = None@ZLIB_ROOT = libinclude(\"${zlib}\")@' -i setup.py
|
|
";
|
|
|
|
buildPhase = "true";
|
|
|
|
installPhase = "yes Y | python setup.py install --prefix=\${out}";
|
|
|
|
meta = {
|
|
description = "
|
|
Python Imaging library.
|
|
";
|
|
};
|
|
}
|