summaryrefslogtreecommitdiffstats
path: root/pkgs/development/libraries/atk
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2013-08-04 20:59:05 +0200
committerVladimír Čunát <vcunat@gmail.com>2013-08-04 21:11:24 +0200
commit7fbcc562609249a6ba81b26064e31c00ed38ebda (patch)
tree0f3f1a5c64c86438081b9dd5c08a88aaefb8d5d7 /pkgs/development/libraries/atk
parentdaf9c75ef4f999aea6e6c70506ee80f35714043e (diff)
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.
Diffstat (limited to 'pkgs/development/libraries/atk')
-rw-r--r--pkgs/development/libraries/atk/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/libraries/atk/default.nix b/pkgs/development/libraries/atk/default.nix
index cea207f27bc5..f4c33c869112 100644
--- a/pkgs/development/libraries/atk/default.nix
+++ b/pkgs/development/libraries/atk/default.nix
@@ -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";