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