summary refs log tree commit diff
path: root/pkgs/applications/window-managers/compiz/0.8.0.nix
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2010-10-19 23:22:24 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2010-10-19 23:22:24 +0000
commitf58a79969517b68002986c40e6bc3f42e41e7f9a (patch)
tree8a6bfa7d4ef86d648e59b9950b334d0593de7b95 /pkgs/applications/window-managers/compiz/0.8.0.nix
parent01134e698fdfb3b61f8ab8ec3bf13e0718f63955 (diff)
downloadnixlib-f58a79969517b68002986c40e6bc3f42e41e7f9a.tar
nixlib-f58a79969517b68002986c40e6bc3f42e41e7f9a.tar.gz
nixlib-f58a79969517b68002986c40e6bc3f42e41e7f9a.tar.bz2
nixlib-f58a79969517b68002986c40e6bc3f42e41e7f9a.tar.lz
nixlib-f58a79969517b68002986c40e6bc3f42e41e7f9a.tar.xz
nixlib-f58a79969517b68002986c40e6bc3f42e41e7f9a.tar.zst
nixlib-f58a79969517b68002986c40e6bc3f42e41e7f9a.zip
* Updated Compiz to 0.8.6 (replacing the old Compiz and Compiz Fusion
  expressions).  Also added patches to allow Compiz and ccsm to find
  plugins installed outside of its prefix.

svn path=/nixpkgs/trunk/; revision=24373
Diffstat (limited to 'pkgs/applications/window-managers/compiz/0.8.0.nix')
-rw-r--r--pkgs/applications/window-managers/compiz/0.8.0.nix44
1 files changed, 0 insertions, 44 deletions
diff --git a/pkgs/applications/window-managers/compiz/0.8.0.nix b/pkgs/applications/window-managers/compiz/0.8.0.nix
deleted file mode 100644
index 40215b2b5495..000000000000
--- a/pkgs/applications/window-managers/compiz/0.8.0.nix
+++ /dev/null
@@ -1,44 +0,0 @@
-args : with args;
-rec {
-  src = fetchurl {
-      url = "http://releases.compiz-fusion.org/core/compiz-0.8.0.tar.gz";
-      sha256 = "0xhyilfz2cfbdwni774b54171addjqw7hda6j6snzxb1igny7iry";
-    };
-
-  buildInputs = [
-    pkgconfig gtk libwnck GConf libgnome
-    libgnomeui metacity gnomegtk glib pango libglade libgtkhtml
-    gtkhtml libgnomecanvas libgnomeprint libgnomeprintui gnomepanel
-    librsvg fuse gettext intltool binutils
-  ];
-  propagatedBuildInputs = [
-    libpng libXcomposite libXfixes libXdamage libXrandr libXinerama
-    libICE libSM startupnotification mesa GConf perl perlXMLParser libxslt
-    dbus.libs dbus_glib compositeproto fixesproto damageproto randrproto
-    xineramaproto renderproto kbproto xextproto libXrender xproto libX11
-    libxcb
-  ];
-
-  postAll = fullDepEntry ("
-    for i in $out/bin/*; do
-     patchelf --set-rpath /var/run/opengl-driver/lib:$(patchelf --print-rpath $i) $i
-    done
-    ensureDir \$out/share/compiz-plugins/
-    ln -sfv \$out/lib/compiz \$out/share/compiz-plugins/
-  ") ["minInit" "doMakeInstall" "defEnsureDir"];
-
-  configureFlags = ["--enable-gtk" "--enable-fuse"
-          "--enable-annotate" "--enable-librsvg"] ++
-          (if args ? extraConfigureFlags then args.extraConfigureFlags else []);
-
-  /* doConfigure should be specified separately */
-  phaseNames = [ "doPatch" "doConfigure" "doMakeInstall" "doPropagate"
-			"doForceShare" "postAll" ];
-
-  name = "compiz-0.8.0";
-
-  meta = {
-          description = "Compiz window manager";
-          inherit src;
-  };
-}