applications/window-managers/xcompmgr: New package.

svn path=/nixpkgs/trunk/; revision=19272
This commit is contained in:
Alexander Tsamutali 2010-01-06 20:45:43 +00:00
parent 5b098479f5
commit 24640da88a
2 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,22 @@
{ stdenv, fetchurl, pkgconfig, libXcomposite, libXfixes, libXdamage
, libXrender }:
stdenv.mkDerivation rec {
name = "xcompmgr-1.1.5";
src = fetchurl {
url = "http://www.x.org/releases/individual/app/${name}.tar.bz2";
sha256 = "bb20737a6f9e0cdf5cfbd5288b6a9a4b16ca18d2be19444549c1d6be2a90b571";
};
buildInputs = [ pkgconfig libXcomposite libXfixes libXdamage libXrender ];
meta = {
homepage = http://www.x.org/;
description = "A sample compositing manager for X servers";
longDescription = ''
A sample compositing manager for X servers supporting the XFIXES,
DAMAGE, RENDER, and COMPOSITE extensions. It enables basic eye-candy
effects.
'';
license = "bsd";
maintainers = with stdenv.lib.maintainers; [ astsmtl ];
platforms = with stdenv.lib.platforms; linux;
};
}

View File

@ -7760,6 +7760,11 @@ let
inherit fetchurl stdenv chmlib wxGTK;
};
xcompmgr = import ../applications/window-managers/xcompmgr {
inherit stdenv fetchurl pkgconfig;
inherit (xlibs) libXcomposite libXfixes libXdamage libXrender;
};
/* Doesn't work yet
xen = builderDefsPackage (import ../applications/virtualization/xen) {