glib: disable the NeXTstep on Darwin
This commit is contained in:
parent
b9982a7d11
commit
fa7f30bf5e
@ -11,7 +11,7 @@
|
|||||||
# Reminder: add 'sed -e 's@python2\.[0-9]@python@' -i
|
# Reminder: add 'sed -e 's@python2\.[0-9]@python@' -i
|
||||||
# $out/bin/gtester-report' to postInstall if this is solved
|
# $out/bin/gtester-report' to postInstall if this is solved
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation (rec {
|
||||||
name = "glib-2.34.0";
|
name = "glib-2.34.0";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
@ -52,3 +52,13 @@ stdenv.mkDerivation rec {
|
|||||||
platforms = stdenv.lib.platforms.linux;
|
platforms = stdenv.lib.platforms.linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//
|
||||||
|
|
||||||
|
(stdenv.lib.optionalAttrs stdenv.isDarwin {
|
||||||
|
# XXX: Disable the NeXTstep back-end because stdenv.gcc doesn't support
|
||||||
|
# Objective-C.
|
||||||
|
postConfigure =
|
||||||
|
'' sed -i configure -e's/glib_have_cocoa=yes/glib_have_cocoa=no/g'
|
||||||
|
'';
|
||||||
|
}))
|
||||||
|
Loading…
x
Reference in New Issue
Block a user