Merge pull request #36990 from matthewbauer/staging
pixman: fix on Darwin (in staging)
This commit is contained in:
commit
c461c00201
@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl, fetchpatch, autoconf, automake, libtool, pkgconfig, libpng, glib /*just passthru*/ }:
|
||||
{ stdenv, fetchurl, fetchpatch, autoconf, automake, libtool, autoreconfHook, pkgconfig, libpng, glib /*just passthru*/ }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "pixman-${version}";
|
||||
@ -18,7 +18,7 @@ stdenv.mkDerivation rec {
|
||||
];
|
||||
|
||||
nativeBuildInputs = [ pkgconfig ]
|
||||
++ stdenv.lib.optionals stdenv.cc.isClang [ autoconf automake libtool ];
|
||||
++ stdenv.lib.optionals stdenv.cc.isClang [ autoconf automake libtool autoreconfHook ];
|
||||
|
||||
buildInputs = stdenv.lib.optional doCheck libpng;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user