e60fe8673b
gnome28 was a mix of packages from various releases, so do not mention 2.28 in the attribute name. svn path=/nixpkgs/trunk/; revision=29721
13 lines
543 B
Nix
13 lines
543 B
Nix
{ stdenv, fetchurl, pkgconfig, glib, gtk, libXcomposite, libXcursor, libXdamage
|
|
, libcanberra, intltool, GConf, startup_notification, zenity, gnome_doc_utils}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "metacity-2.28.0";
|
|
src = fetchurl {
|
|
url = mirror://gnome/sources/metacity/2.28/metacity-2.28.0.tar.bz2;
|
|
sha256 = "0iamb6gw6gl6bfs7nqxpwr9xiij5axxr1iy4bl6g9z11dwx5a886";
|
|
};
|
|
buildInputs = [ pkgconfig glib gtk libXcomposite libXcursor libXdamage libcanberra
|
|
intltool GConf startup_notification zenity gnome_doc_utils ];
|
|
}
|