introspection disabling -- clutter-gtk, NM-applet, gnome_panel

Didn't build as it was, and not needed anywhere AFAIK.
This commit is contained in:
Vladimír Čunát 2013-08-06 09:10:00 +02:00
parent a926bad1cc
commit 72a8019334
4 changed files with 8 additions and 1 deletions

View file

@ -19,7 +19,8 @@ stdenv.mkDerivation {
];
nativeBuildInputs = [ pkgconfig intltool which ];
configureFlags = "--disable-scrollkeeper";
configureFlags = [ "--disable-scrollkeeper" "--disable-introspection"/*not useful AFAIK*/ ];
NIX_CFLAGS_COMPILE="-I${GConf}/include/gconf/2";
}

View file

@ -11,6 +11,8 @@ stdenv.mkDerivation rec {
propagatedBuildInputs = [ clutter gtk ];
nativeBuildInputs = [ pkgconfig ];
configureFlags = [ "--disable-introspection" ]; # not needed anywhere AFAIK
postBuild = "rm -rf $out/share/gtk-doc";
meta = {

View file

@ -11,6 +11,8 @@ stdenv.mkDerivation rec {
propagatedBuildInputs = [ clutter gtk3 ];
nativeBuildInputs = [ pkgconfig ];
configureFlags = [ "--disable-introspection" ]; # not needed anywhere AFAIK
postBuild = "rm -rf $out/share/gtk-doc";
meta = {

View file

@ -27,6 +27,8 @@ stdenv.mkDerivation rec {
propagatedUserEnvPkgs = [ GConf gnome_keyring hicolor_icon_theme ];
configureFlags = [ "--disable-introspection" ]; # not needed anywhere AFAIK
makeFlags = [
''CFLAGS=-DMOBILE_BROADBAND_PROVIDER_INFO=\"${mobile_broadband_provider_info}/share/mobile-broadband-provider-info/serviceproviders.xml\"''
];