2011-10-10 23:48:21 +02:00
|
|
|
{ stdenv, fetchurl_gnome, pkgconfig, libxml2, xlibs, glib, pango
|
|
|
|
, intltool, libgnome, libgnomecanvas, libbonoboui, GConf, libtool
|
2009-11-04 10:17:27 +01:00
|
|
|
, gnome_vfs, gnome_keyring, libglade }:
|
2009-09-30 07:27:34 +02:00
|
|
|
|
2011-10-10 23:48:21 +02:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = src.pkgname;
|
2009-11-04 10:17:27 +01:00
|
|
|
|
2011-10-10 23:48:21 +02:00
|
|
|
src = fetchurl_gnome {
|
|
|
|
project = "libgnomeui";
|
|
|
|
major = "2"; minor = "24"; patchlevel = "5";
|
|
|
|
sha256 = "03rwbli76crkjl6gp422wrc9lqpl174k56cp9i96b7l8jlj2yddf";
|
2009-09-30 07:27:34 +02:00
|
|
|
};
|
2009-11-04 10:17:27 +01:00
|
|
|
|
2011-10-10 23:48:21 +02:00
|
|
|
buildNativeInputs = [ pkgconfig intltool ];
|
|
|
|
buildInputs =
|
|
|
|
[ xlibs.xlibs libxml2 GConf pango glib gnome_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
|
|
|
}
|