2009-09-30 07:27:34 +02:00
|
|
|
{ stdenv, fetchurl, pkgconfig, glib, gtk, libXcomposite, libXcursor, libXdamage
|
2010-02-21 13:25:36 +01:00
|
|
|
, libcanberra, intltool, GConf, startup_notification, zenity, gnome_doc_utils}:
|
2009-09-30 07:27:34 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "metacity-2.28.0";
|
|
|
|
src = fetchurl {
|
2009-09-30 08:35:09 +02:00
|
|
|
url = mirror://gnome/sources/metacity/2.28/metacity-2.28.0.tar.bz2;
|
2009-09-30 08:10:45 +02:00
|
|
|
sha256 = "0iamb6gw6gl6bfs7nqxpwr9xiij5axxr1iy4bl6g9z11dwx5a886";
|
2009-09-30 07:27:34 +02:00
|
|
|
};
|
2010-02-21 13:25:36 +01:00
|
|
|
buildInputs = [ pkgconfig glib gtk libXcomposite libXcursor libXdamage libcanberra
|
2009-09-30 07:27:34 +02:00
|
|
|
intltool GConf startup_notification zenity gnome_doc_utils ];
|
|
|
|
}
|