glibmm and gtkmm moved into gtkLibs
svn path=/nixpkgs/branches/stdenv-updates/; revision=10478
This commit is contained in:
parent
2ca177e6ae
commit
00af084c1c
@ -9,4 +9,8 @@ rec {
|
|||||||
pango = (import ./pango) (args // { inherit glib; });
|
pango = (import ./pango) (args // { inherit glib; });
|
||||||
|
|
||||||
gtk = (import ./gtk+) (args // { inherit glib atk pango; } );
|
gtk = (import ./gtk+) (args // { inherit glib atk pango; } );
|
||||||
|
|
||||||
|
glibmm = (import ./glibmm) (args // { inherit glib; });
|
||||||
|
|
||||||
|
gtkmm = (import ./gtkmm) (args // { inherit gtk atk glibmm; });
|
||||||
}
|
}
|
||||||
|
@ -7,6 +7,7 @@ stdenv.mkDerivation {
|
|||||||
sha256 = "02rjjdh0f6kafa1sn4y5ykvm4f2qn3yh4kr4lngcv7vzasqn1dr1";
|
sha256 = "02rjjdh0f6kafa1sn4y5ykvm4f2qn3yh4kr4lngcv7vzasqn1dr1";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [pkgconfig glib libsigcxx];
|
buildInputs = [pkgconfig];
|
||||||
|
propagatedBuildInputs = [glib libsigcxx];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -6,10 +6,8 @@ stdenv.mkDerivation {
|
|||||||
url = ftp://ftp.gtk.org/pub/gtk/v2.10/gtk+-2.10.14.tar.bz2;
|
url = ftp://ftp.gtk.org/pub/gtk/v2.10/gtk+-2.10.14.tar.bz2;
|
||||||
sha256 = "1qjdx9kdc533dajdy1kv3ssxzh7gz7j7vzgw0ax910q4klil88yh";
|
sha256 = "1qjdx9kdc533dajdy1kv3ssxzh7gz7j7vzgw0ax910q4klil88yh";
|
||||||
};
|
};
|
||||||
buildInputs = [
|
buildInputs = [ pkgconfig perl ];
|
||||||
pkgconfig perl libtiff libjpeg libpng cairo libXrandr
|
propagatedBuildInputs = [x11 glib atk pango libtiff libjpeg libpng cairo
|
||||||
(if xineramaSupport then libXinerama else null)
|
libXrandr (if xineramaSupport then libXinerama else null)];
|
||||||
];
|
passthru = { inherit libtiff libjpeg libpng; };
|
||||||
propagatedBuildInputs = [x11 glib atk pango];
|
|
||||||
inherit libtiff libjpeg libpng;
|
|
||||||
}
|
}
|
||||||
|
@ -7,6 +7,7 @@ stdenv.mkDerivation {
|
|||||||
sha256 = "1bri9r0k69dmi5xgzrlfllp3adfzhz8dh9zkcvi6sjkgfwi594vx";
|
sha256 = "1bri9r0k69dmi5xgzrlfllp3adfzhz8dh9zkcvi6sjkgfwi594vx";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [pkgconfig gtk atk glibmm libsigcxx];
|
buildInputs = [pkgconfig];
|
||||||
|
propagatedBuildInputs = [glibmm gtk atk cairomm];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -6,6 +6,6 @@ stdenv.mkDerivation {
|
|||||||
url = ftp://ftp.gtk.org/pub/pango/1.14/pango-1.14.10.tar.bz2;
|
url = ftp://ftp.gtk.org/pub/pango/1.14/pango-1.14.10.tar.bz2;
|
||||||
md5 = "e9fc2f8168e74e2fa0aa8238ee0e9c06";
|
md5 = "e9fc2f8168e74e2fa0aa8238ee0e9c06";
|
||||||
};
|
};
|
||||||
buildInputs = [pkgconfig libpng];
|
buildInputs = [pkgconfig];
|
||||||
propagatedBuildInputs = [x11 glib cairo];
|
propagatedBuildInputs = [x11 glib cairo libpng];
|
||||||
}
|
}
|
||||||
|
@ -1955,11 +1955,6 @@ rec {
|
|||||||
#installLocales = false;
|
#installLocales = false;
|
||||||
});
|
});
|
||||||
|
|
||||||
glibmm = import ../development/libraries/gtk-libs/2.6/glibmm {
|
|
||||||
inherit fetchurl stdenv pkgconfig libsigcxx;
|
|
||||||
inherit (gtkLibs26) glib;
|
|
||||||
};
|
|
||||||
|
|
||||||
gmime = import ../development/libraries/gmime {
|
gmime = import ../development/libraries/gmime {
|
||||||
inherit fetchurl stdenv pkgconfig zlib;
|
inherit fetchurl stdenv pkgconfig zlib;
|
||||||
inherit (gtkLibs) glib;
|
inherit (gtkLibs) glib;
|
||||||
@ -2001,7 +1996,7 @@ rec {
|
|||||||
|
|
||||||
gtkLibs210 = import ../development/libraries/gtk-libs/2.10 {
|
gtkLibs210 = import ../development/libraries/gtk-libs/2.10 {
|
||||||
inherit fetchurl stdenv pkgconfig gettext perl x11
|
inherit fetchurl stdenv pkgconfig gettext perl x11
|
||||||
libtiff libjpeg libpng cairo;
|
libtiff libjpeg libpng cairo libsigcxx cairomm;
|
||||||
inherit (xlibs) libXinerama libXrandr;
|
inherit (xlibs) libXinerama libXrandr;
|
||||||
xineramaSupport = true;
|
xineramaSupport = true;
|
||||||
};
|
};
|
||||||
@ -2011,12 +2006,6 @@ rec {
|
|||||||
libtiff libjpeg libpng;
|
libtiff libjpeg libpng;
|
||||||
};
|
};
|
||||||
|
|
||||||
gtkmm = import ../development/libraries/gtk-libs/2.6/gtkmm {
|
|
||||||
inherit fetchurl stdenv pkgconfig libsigcxx;
|
|
||||||
inherit (gtkLibs26) gtk atk;
|
|
||||||
inherit glibmm;
|
|
||||||
};
|
|
||||||
|
|
||||||
gtkmozembedsharp = import ../development/libraries/gtkmozembed-sharp {
|
gtkmozembedsharp = import ../development/libraries/gtkmozembed-sharp {
|
||||||
inherit fetchurl stdenv mono pkgconfig monoDLLFixer;
|
inherit fetchurl stdenv mono pkgconfig monoDLLFixer;
|
||||||
inherit (gnome) gtk;
|
inherit (gnome) gtk;
|
||||||
@ -4220,9 +4209,9 @@ rec {
|
|||||||
|
|
||||||
inkscape = import ../applications/graphics/inkscape {
|
inkscape = import ../applications/graphics/inkscape {
|
||||||
inherit fetchurl stdenv perl perlXMLParser pkgconfig zlib
|
inherit fetchurl stdenv perl perlXMLParser pkgconfig zlib
|
||||||
popt libxml2 libxslt libpng boehmgc fontconfig gtkmm
|
popt libxml2 libxslt libpng boehmgc fontconfig
|
||||||
glibmm libsigcxx lcms boost gettext;
|
libsigcxx lcms boost gettext cairomm;
|
||||||
inherit (gtkLibs) gtk glib;
|
inherit (gtkLibs) gtk glib glibmm gtkmm;
|
||||||
inherit (xlibs) libXft;
|
inherit (xlibs) libXft;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user