summary refs log tree commit diff
path: root/pkgs/desktops/gnome/metacity.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/desktops/gnome/metacity.nix')
-rw-r--r--pkgs/desktops/gnome/metacity.nix25
1 files changed, 0 insertions, 25 deletions
diff --git a/pkgs/desktops/gnome/metacity.nix b/pkgs/desktops/gnome/metacity.nix
deleted file mode 100644
index 9d22add6af8c7..0000000000000
--- a/pkgs/desktops/gnome/metacity.nix
+++ /dev/null
@@ -1,25 +0,0 @@
-{ input, stdenv, fetchurl, pkgconfig, perl, perlXMLParser, glib, gtk
-, GConf, startupnotification, libXinerama, libXrandr, libXcursor
-, gettext, intltool, zenity, gnomedocutils
-
-, enableCompositor ? false
-, libXcomposite ? null, libXfixes ? null, libXdamage ? null, libcm ? null
-}:
-
-assert enableCompositor ->
-  libXcomposite != null && libXfixes != null && libXdamage != null && libcm != null;
-
-stdenv.mkDerivation {
-  inherit (input) name src;
-  
-  buildInputs = [
-    pkgconfig perl perlXMLParser glib gtk GConf startupnotification
-    libXinerama libXrandr libXcursor gettext intltool
-    zenity gnomedocutils
-  ]
-  ++ stdenv.lib.optionals enableCompositor [libXcomposite libXfixes libXdamage libcm];
-  
-  configureFlags = ''
-    ${if enableCompositor then "--enable-compositor" else ""}
-  '';
-}