2011-10-08 18:58:32 +02:00
|
|
|
{ stdenv, fetchurl, pkgconfig, dbus_glib, dbus, cairo, popt, which, libxml2Python, libxslt, bzip2, python
|
2012-03-08 23:45:47 +01:00
|
|
|
, glib, gtk, pango, atk, libXau, libcanberra
|
2009-09-30 07:27:34 +02:00
|
|
|
, intltool, ORBit2, libglade, libgnome, libgnomeui, libbonobo, libbonoboui, GConf, gnome_menus, gnome_desktop
|
2012-01-04 14:37:54 +01:00
|
|
|
, libwnck, librsvg, libgweather, gnome_doc_utils, libgnomecanvas, libart_lgpl, libtasn1, libtool}:
|
2009-09-30 07:27:34 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2012-03-08 23:45:47 +01:00
|
|
|
name = "gnome-panel-2.32.1";
|
|
|
|
|
2009-09-30 07:27:34 +02:00
|
|
|
src = fetchurl {
|
2012-03-08 23:45:47 +01:00
|
|
|
url = mirror://gnome/sources/gnome-panel/2.32/gnome-panel-2.32.1.tar.bz2;
|
|
|
|
sha256 = "0pyakxyixmcp1yhi8r1q6adhamh2waj48y397fkigj11gbmjhy4g";
|
2009-09-30 07:27:34 +02:00
|
|
|
};
|
2012-03-08 23:45:47 +01:00
|
|
|
|
|
|
|
buildInputs =
|
|
|
|
[ gtk dbus_glib popt libxml2Python libxslt bzip2 python libXau intltool
|
|
|
|
ORBit2 libglade libgnome libgnomeui libbonobo libbonoboui GConf
|
|
|
|
gnome_menus gnome_desktop libwnck librsvg libgweather gnome_doc_utils
|
|
|
|
libtasn1 libtool libcanberra
|
|
|
|
];
|
|
|
|
|
2012-12-28 19:20:09 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig intltool which ];
|
2009-09-30 07:27:34 +02:00
|
|
|
configureFlags = "--disable-scrollkeeper";
|
2012-03-08 23:45:47 +01:00
|
|
|
|
|
|
|
NIX_CFLAGS_COMPILE="-I${GConf}/include/gconf/2";
|
2009-09-30 07:27:34 +02:00
|
|
|
}
|