mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 15:27:20 +03:00
GNOME: Fix libbonoboui.
svn path=/nixpkgs/branches/stdenv-updates/; revision=14676
This commit is contained in:
parent
6964014968
commit
e5275b36d7
@ -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;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -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?
|
||||||
|
Loading…
Reference in New Issue
Block a user