2009-09-30 07:27:34 +02:00
|
|
|
{ stdenv, fetchurl, pkgconfig, glib, gtk, libXcomposite, libXcursor, libXdamage
|
2018-02-25 03:23:58 +01:00
|
|
|
, libcanberra-gtk2, intltool, GConf, startup_notification, zenity, gnome-doc-utils
|
|
|
|
, gsettings-desktop-schemas }:
|
2009-09-30 07:27:34 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2012-03-08 23:46:03 +01:00
|
|
|
name = "metacity-2.30.3";
|
|
|
|
|
2009-09-30 07:27:34 +02:00
|
|
|
src = fetchurl {
|
2012-03-08 23:46:03 +01:00
|
|
|
url = mirror://gnome/sources/metacity/2.30/metacity-2.30.3.tar.bz2;
|
|
|
|
sha256 = "1p8qzj967mmlwdl6gv9vb2vzs19czvivl0sd337lgr55iw0qgy08";
|
2009-09-30 07:27:34 +02:00
|
|
|
};
|
2012-03-08 23:46:03 +01:00
|
|
|
|
|
|
|
buildInputs =
|
2018-02-25 03:23:58 +01:00
|
|
|
[ pkgconfig glib gtk libXcomposite libXcursor libXdamage libcanberra-gtk2
|
|
|
|
intltool GConf startup_notification zenity gnome-doc-utils
|
|
|
|
gsettings-desktop-schemas
|
2012-03-08 23:46:03 +01:00
|
|
|
];
|
2009-09-30 07:27:34 +02:00
|
|
|
}
|