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