2015-09-15 02:26:18 -07:00
|
|
|
{ stdenv, fetchurl, pkgconfig, libxml2, xorg, glib, pango
|
2011-10-10 14:48:21 -07:00
|
|
|
, intltool, libgnome, libgnomecanvas, libbonoboui, GConf, libtool
|
2012-03-08 09:16:04 -08:00
|
|
|
, gnome_vfs, libgnome_keyring, libglade }:
|
2009-09-29 22:27:34 -07:00
|
|
|
|
2011-10-10 14:48:21 -07:00
|
|
|
stdenv.mkDerivation rec {
|
2015-04-04 22:22:12 -07:00
|
|
|
name = "libgnomeui-${minVer}.5";
|
|
|
|
minVer = "2.24";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://gnome/sources/libgnomeui/${minVer}/${name}.tar.bz2";
|
2011-10-10 14:48:21 -07:00
|
|
|
sha256 = "03rwbli76crkjl6gp422wrc9lqpl174k56cp9i96b7l8jlj2yddf";
|
2009-09-29 22:27:34 -07:00
|
|
|
};
|
2015-04-04 22:22:12 -07:00
|
|
|
|
2012-12-28 10:20:09 -08:00
|
|
|
nativeBuildInputs = [ pkgconfig intltool ];
|
2011-10-10 14:48:21 -07:00
|
|
|
buildInputs =
|
2015-09-15 02:26:18 -07:00
|
|
|
[ xorg.xlibsWrapper libxml2 GConf pango glib libgnome_keyring libglade libtool ];
|
2009-11-04 01:17:27 -08:00
|
|
|
|
|
|
|
propagatedBuildInputs = [ libgnome libbonoboui libgnomecanvas gnome_vfs ];
|
2009-09-29 22:27:34 -07:00
|
|
|
}
|