* PIL updated to 1.1.7.

svn path=/nixpkgs/trunk/; revision=31142
This commit is contained in:
Eelco Dolstra 2011-12-29 16:53:14 +00:00
parent de1a6e09d7
commit 633a194994

View File

@ -1,13 +1,13 @@
{ fetchurl, stdenv, python
, libjpeg, zlib, freetype }:
{ fetchurl, stdenv, python, libjpeg, zlib, freetype }:
let version = "1.1.6";
in
stdenv.mkDerivation {
let version = "1.1.7"; in
stdenv.mkDerivation {
name = "python-imaging-${version}";
src = fetchurl {
url = "http://effbot.org/downloads/Imaging-${version}.tar.gz";
sha256 = "141zidl3s9v4vfi3nsbg42iq1lc2a932gprqr1kij5hrnn53bmvx";
sha256 = "04aj80jhfbmxqzvmq40zfi4z3cw6vi01m3wkk6diz3lc971cfnw9";
};
buildInputs = [ python libjpeg zlib freetype ];
@ -38,4 +38,4 @@ in
license = "http://www.pythonware.com/products/pil/license.htm";
};
}
}