mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-17 14:19:58 +03:00
GNOME: Assorted fixes.
svn path=/nixpkgs/branches/stdenv-updates/; revision=14674
This commit is contained in:
parent
9845dc5aec
commit
ca43b547b3
@ -78,7 +78,7 @@ rec {
|
||||
|
||||
libgnome = import ./libgnome.nix {
|
||||
inherit fetchurl stdenv gnome pkgconfig perl perlXMLParser
|
||||
popt zlib esound gettext;
|
||||
popt zlib esound gettext intltool;
|
||||
input = platform.libgnome;
|
||||
};
|
||||
|
||||
@ -102,7 +102,9 @@ rec {
|
||||
};
|
||||
|
||||
libbonobo = import ./libbonobo.nix {
|
||||
inherit fetchurl stdenv pkgconfig perl perlXMLParser ORBit2 libxml2 popt flex gettext;
|
||||
inherit fetchurl stdenv pkgconfig perl perlXMLParser ORBit2
|
||||
dbus dbus_glib libxml2 popt flex
|
||||
gettext intltool;
|
||||
yacc = bison;
|
||||
input = platform.libbonobo;
|
||||
};
|
||||
|
@ -1,4 +1,6 @@
|
||||
{input, stdenv, fetchurl, pkgconfig, perl, perlXMLParser, ORBit2, libxml2, popt, yacc, flex, gettext}:
|
||||
{ input, stdenv, fetchurl, pkgconfig, perl, perlXMLParser
|
||||
, dbus, dbus_glib, ORBit2, libxml2
|
||||
, popt, yacc, flex, gettext, intltool }:
|
||||
|
||||
assert pkgconfig != null && perl != null && ORBit2 != null
|
||||
&& libxml2 != null && popt != null && yacc != null && flex != null;
|
||||
@ -6,6 +8,10 @@ assert pkgconfig != null && perl != null && ORBit2 != null
|
||||
# todo 2.8.1 doesn;t work
|
||||
stdenv.mkDerivation {
|
||||
inherit (input) name src;
|
||||
buildInputs = [pkgconfig perl perlXMLParser libxml2 yacc flex gettext];
|
||||
buildInputs = [
|
||||
pkgconfig perl perlXMLParser libxml2 yacc flex
|
||||
dbus dbus_glib
|
||||
gettext intltool
|
||||
];
|
||||
propagatedBuildInputs = [ORBit2 popt];
|
||||
}
|
||||
|
@ -1,5 +1,5 @@
|
||||
{ input, stdenv, fetchurl, gnome, pkgconfig, perl, perlXMLParser
|
||||
, popt, zlib, esound, gettext
|
||||
, popt, zlib, esound, gettext, intltool
|
||||
}:
|
||||
|
||||
# !!! TODO CHECK:
|
||||
@ -9,6 +9,6 @@
|
||||
|
||||
stdenv.mkDerivation {
|
||||
inherit (input) name src;
|
||||
buildInputs = [pkgconfig perl perlXMLParser popt zlib esound gettext];
|
||||
buildInputs = [pkgconfig perl perlXMLParser popt zlib esound gettext intltool];
|
||||
propagatedBuildInputs = [gnome.glib gnome.gnomevfs gnome.libbonobo gnome.GConf];
|
||||
}
|
||||
|
@ -1,11 +1,12 @@
|
||||
{ input, stdenv, fetchurl, gnome, pkgconfig, perl, perlXMLParser
|
||||
, esound, libjpeg, gettext
|
||||
, esound, libjpeg, gettext, intltool
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
inherit (input) name src;
|
||||
buildInputs = [
|
||||
pkgconfig perl perlXMLParser gnome.libglade esound libjpeg gettext
|
||||
intltool
|
||||
];
|
||||
propagatedBuildInputs = [
|
||||
gnome.libgnome gnome.libgnomecanvas gnome.libbonoboui libjpeg
|
||||
|
Loading…
Reference in New Issue
Block a user