2011-10-08 20:58:32 +04:00
|
|
|
{ stdenv, fetchurl, pkgconfig, python, libxml2Python, libxslt, which, libX11, gtk
|
2009-09-30 09:27:34 +04:00
|
|
|
, intltool, GConf, gnome_doc_utils}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2012-03-09 02:45:32 +04:00
|
|
|
name = "gnome-desktop-2.32.1";
|
|
|
|
|
2009-09-30 09:27:34 +04:00
|
|
|
src = fetchurl {
|
2012-03-09 02:45:32 +04:00
|
|
|
url = mirror://gnome/sources/gnome-desktop/2.32/gnome-desktop-2.32.1.tar.bz2;
|
|
|
|
sha256 = "17bkng6ay37n3492lr9wpb49kms6gh554rn9gbjs27zygvvfrjsm";
|
2009-09-30 09:27:34 +04:00
|
|
|
};
|
2012-03-09 02:45:32 +04:00
|
|
|
|
2009-09-30 09:27:34 +04:00
|
|
|
configureFlags = "--disable-scrollkeeper";
|
2011-10-08 20:58:32 +04:00
|
|
|
buildInputs = [ pkgconfig python libxml2Python libxslt which libX11 gtk
|
2009-09-30 09:27:34 +04:00
|
|
|
intltool GConf gnome_doc_utils ];
|
|
|
|
}
|