GNOME: Fix libbonoboui.

svn path=/nixpkgs/branches/stdenv-updates/; revision=14676
This commit is contained in:
Ludovic Courtès 2009-03-24 08:47:50 +00:00
parent 6964014968
commit e5275b36d7
2 changed files with 3 additions and 3 deletions

View File

@ -111,7 +111,7 @@ rec {
libbonoboui = import ./libbonoboui.nix { libbonoboui = import ./libbonoboui.nix {
inherit fetchurl stdenv pkgconfig perl perlXMLParser libxml2 libglade inherit fetchurl stdenv pkgconfig perl perlXMLParser libxml2 libglade
libgnome libgnomecanvas gettext; libgnome libgnomecanvas gettext intltool;
input = platform.libbonoboui; input = platform.libbonoboui;
}; };

View File

@ -1,5 +1,5 @@
{ input, stdenv, fetchurl, pkgconfig, perl, perlXMLParser, libxml2, libglade, libgnome { input, stdenv, fetchurl, pkgconfig, perl, perlXMLParser, libxml2, libglade, libgnome
, libgnomecanvas, gettext}: , libgnomecanvas, gettext, intltool }:
assert pkgconfig != null && perl != null && libxml2 != null assert pkgconfig != null && perl != null && libxml2 != null
&& libglade != null && libgnome != null && libgnomecanvas != null; && libglade != null && libgnome != null && libgnomecanvas != null;
@ -7,7 +7,7 @@ assert pkgconfig != null && perl != null && libxml2 != null
# TODO 2.8.1 doesn't work # TODO 2.8.1 doesn't work
stdenv.mkDerivation { stdenv.mkDerivation {
inherit (input) name src; inherit (input) name src;
buildInputs = [pkgconfig perl perlXMLParser libglade gettext]; buildInputs = [ pkgconfig perl perlXMLParser libglade gettext intltool ];
propagatedBuildInputs = [libxml2 libgnome libgnomecanvas]; propagatedBuildInputs = [libxml2 libgnome libgnomecanvas];
LDFLAGS="-lglib-2.0"; # !!! why? LDFLAGS="-lglib-2.0"; # !!! why?