mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
* Compiz, a compositing window manager.
svn path=/nixpkgs/trunk/; revision=8071
This commit is contained in:
parent
213aefac17
commit
d3bdca7623
4 changed files with 41 additions and 0 deletions
22
pkgs/applications/window-managers/compiz/default.nix
Normal file
22
pkgs/applications/window-managers/compiz/default.nix
Normal file
|
@ -0,0 +1,22 @@
|
|||
{ stdenv, fetchurl, pkgconfig, libpng, libXcomposite, libXfixes
|
||||
, libXdamage, libXrandr, libXinerama, libICE, libSM
|
||||
, startupnotification, libXrender, xextproto, mesa, gtk
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "compiz-0.3.6";
|
||||
src = fetchurl {
|
||||
url = http://xorg.freedesktop.org/archive/individual/app/compiz-0.3.6.tar.bz2;
|
||||
sha256 = "0z7cprg510x1sjzsj8h02l1q5h7qvhcn7z94b7a48pxv124z7qpg";
|
||||
};
|
||||
patches = fetchurl {
|
||||
url = http://gandalfn.club.fr/ubuntu/compiz-patch/02-tfp-server-extension.patch;
|
||||
sha256 = "1hi53ajypmgsyfz7cziccdk9f8mn3pfl255yjzl0v15nv5kacmiq";
|
||||
};
|
||||
buildInputs = [
|
||||
pkgconfig libpng libXcomposite libXfixes libXdamage libXrandr
|
||||
libXinerama libICE libSM startupnotification libXrender xextproto
|
||||
mesa gtk
|
||||
];
|
||||
configureFlags = "--disable-gconf";
|
||||
}
|
|
@ -181,4 +181,9 @@ rec {
|
|||
input = desktop.libsoup;
|
||||
};
|
||||
|
||||
startupnotification = (import ./startup-notification) {
|
||||
inherit stdenv fetchurl pkgconfig x11;
|
||||
input = desktop.startupnotification;
|
||||
};
|
||||
|
||||
}
|
||||
|
|
|
@ -0,0 +1,6 @@
|
|||
{input, stdenv, fetchurl, pkgconfig, x11}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
inherit (input) name src;
|
||||
buildInputs = [pkgconfig x11];
|
||||
}
|
|
@ -2537,6 +2537,14 @@ rec {
|
|||
};
|
||||
};
|
||||
|
||||
compiz = import ../applications/window-managers/compiz {
|
||||
inherit fetchurl stdenv pkgconfig libpng mesa;
|
||||
inherit (xorg) libXcomposite libXfixes libXdamage libXrandr
|
||||
libXinerama libICE libSM libXrender xextproto;
|
||||
inherit (gnome) startupnotification;
|
||||
inherit (gtkLibs) gtk;
|
||||
};
|
||||
|
||||
cua = import ../applications/editors/emacs-modes/cua {
|
||||
inherit fetchurl stdenv;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue