mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 19:51:17 +00:00
applications/window-managers/xcompmgr: New package.
svn path=/nixpkgs/trunk/; revision=19272
This commit is contained in:
parent
5b098479f5
commit
24640da88a
22
pkgs/applications/window-managers/xcompmgr/default.nix
Normal file
22
pkgs/applications/window-managers/xcompmgr/default.nix
Normal 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;
|
||||
};
|
||||
}
|
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue