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