1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-05-01 06:57:02 +00:00

pixman: bugfix update, remove withPNG option

The option seemed useless.
This commit is contained in:
Vladimír Čunát 2014-07-09 20:44:49 +02:00
parent 5d2ff3b5c2
commit 10fe63c05a

View file

@ -1,16 +1,16 @@
{ fetchurl, stdenv, pkgconfig, perl, withPNG ? true, libpng, glib /*just passthru*/ }: { fetchurl, stdenv, pkgconfig, perl, libpng, glib /*just passthru*/ }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "pixman-0.32.4"; name = "pixman-0.32.6";
src = fetchurl { src = fetchurl {
url = "http://cairographics.org/releases/${name}.tar.gz"; url = "http://cairographics.org/releases/${name}.tar.gz";
sha256 = "113ycngcssbrps217dyajq96hm9xghsfch82h14yffla1r1fviw0"; sha256 = "0129g4zdrw5hif5783li7rzcr4vpbc2cfia91azxmsk0h0xx3zix";
}; };
nativeBuildInputs = [ pkgconfig perl ]; nativeBuildInputs = [ pkgconfig perl ];
buildInputs = stdenv.lib.optional withPNG [ libpng ]; # NOT in closure anyway buildInputs = [ libpng ]; # NOT in closure anyway
postInstall = glib.flattenInclude; postInstall = glib.flattenInclude;