add introspection into GTK libs (part of #517)

This is all work of Marc Weber <marco-oweber@gmx.de>, except for a few nitpicks.

Tested space blowup: IMHO negligible to headers and similar stuff,
e.g. the firefox closure (reported by du) grows from 560 to 579 MB.
Saving space should be handled separately,
e.g. we have the multiple-outputs branch.
This commit is contained in:
Vladimír Čunát
2013-08-04 21:11:24 +02:00
parent daf9c75ef4
commit 7fbcc56260
9 changed files with 46 additions and 19 deletions
+2 -2
View File
@@ -1,4 +1,4 @@
{ stdenv, fetchurl, pkgconfig, perl, glib, libintlOrEmpty }:
{ stdenv, fetchurl, pkgconfig, perl, glib, libintlOrEmpty, gobjectIntrospection }:
stdenv.mkDerivation rec {
name = "atk-2.8.0";
@@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ pkgconfig perl ];
propagatedBuildInputs = [ glib ];
propagatedBuildInputs = [ glib gobjectIntrospection /*ToDo: why propagate*/ ];
postInstall = "rm -rf $out/share/gtk-doc";