pixman: bugfix update, remove withPNG option

The option seemed useless.

+4 -4
+4 -4
pkgs/development/libraries/pixman/default.nix
··· 1 - { fetchurl, stdenv, pkgconfig, perl, withPNG ? true, libpng, glib /*just passthru*/ }: 1 + { fetchurl, stdenv, pkgconfig, perl, libpng, glib /*just passthru*/ }: 2 2 3 3 stdenv.mkDerivation rec { 4 - name = "pixman-0.32.4"; 4 + name = "pixman-0.32.6"; 5 5 6 6 src = fetchurl { 7 7 url = "http://cairographics.org/releases/${name}.tar.gz"; 8 - sha256 = "113ycngcssbrps217dyajq96hm9xghsfch82h14yffla1r1fviw0"; 8 + sha256 = "0129g4zdrw5hif5783li7rzcr4vpbc2cfia91azxmsk0h0xx3zix"; 9 9 }; 10 10 11 11 nativeBuildInputs = [ pkgconfig perl ]; 12 12 13 - buildInputs = stdenv.lib.optional withPNG [ libpng ]; # NOT in closure anyway 13 + buildInputs = [ libpng ]; # NOT in closure anyway 14 14 15 15 postInstall = glib.flattenInclude; 16 16