xcompmgr: generate along with xorg stuff

Also a minor update.
/cc maintainer @astsmtl.
This commit is contained in:
Vladimír Čunát
2015-05-26 20:06:53 +02:00
parent 0e270def52
commit edeab75913
4 changed files with 12 additions and 23 deletions
@@ -1,22 +0,0 @@
{ stdenv, fetchurl, pkgconfig, libXcomposite, libXfixes, libXdamage
, libXrender, libXext }:
stdenv.mkDerivation rec {
name = "xcompmgr-1.1.6";
src = fetchurl {
url = "mirror://xorg/individual/app/${name}.tar.bz2";
sha256 = "c98949d36793b30ed1ed47495c87a05fa245ac0fc2857d2abc54979124687c02";
};
buildInputs = [ pkgconfig libXcomposite libXfixes libXdamage libXrender libXext ];
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;
};
}