1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

disable auto-detected introspection for libwnck and clutter

Didn't build as it was, and not needed anywhere AFAIK.
This commit is contained in:
Vladimír Čunát 2013-08-06 08:06:26 +02:00
parent 7fbcc56260
commit a926bad1cc
2 changed files with 4 additions and 0 deletions

View file

@ -15,6 +15,8 @@ stdenv.mkDerivation {
atk json_glib
];
configureFlags = [ "--disable-introspection" ]; # not needed anywhere AFAIK
meta = {
description = "Clutter, a library for creating fast, dynamic graphical user interfaces";

View file

@ -9,4 +9,6 @@ stdenv.mkDerivation {
};
buildInputs = [ pkgconfig libX11 gtk intltool ];
configureFlags = [ "--disable-introspection" ]; # not needed anywhere AFAIK
}