compton: add xwininfo dependency for compton-trans; clean up (#16877)
This commit is contained in:
parent
c09338d037
commit
c6ba4cbde9
@ -1,10 +1,8 @@
|
||||
{ stdenv, fetchurl, pkgconfig
|
||||
, dbus, libconfig, libdrm, libxml2, mesa, pcre
|
||||
, libXcomposite, libXfixes, libXdamage, libXinerama
|
||||
, libXrandr, libXrender, libXext }:
|
||||
{ stdenv, fetchurl, pkgconfig, dbus, libconfig, libdrm, libxml2, mesa, pcre,
|
||||
libXcomposite, libXfixes, libXdamage, libXinerama, libXrandr, libXrender,
|
||||
libXext, xwininfo }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
|
||||
name = "compton-0.1_beta2";
|
||||
|
||||
src = fetchurl {
|
||||
@ -12,18 +10,36 @@ stdenv.mkDerivation rec {
|
||||
sha256 = "1mpgn1d98dv66xs2j8gaxjiw26nzwl9a641lrday7h40g3k45g9v";
|
||||
};
|
||||
|
||||
buildInputs = [ pkgconfig dbus libconfig libdrm libxml2 mesa pcre
|
||||
libXcomposite libXfixes libXdamage libXinerama libXrandr libXrender libXext ];
|
||||
buildInputs = [
|
||||
pkgconfig
|
||||
dbus
|
||||
libconfig
|
||||
libdrm
|
||||
libxml2
|
||||
mesa
|
||||
pcre
|
||||
libXcomposite
|
||||
libXfixes
|
||||
libXdamage
|
||||
libXinerama
|
||||
libXrandr
|
||||
libXrender
|
||||
libXext
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [ xwininfo ];
|
||||
|
||||
installFlags = "PREFIX=$(out)";
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = https://github.com/chjj/compton/;
|
||||
description = "A fork of XCompMgr, a sample compositing manager for X servers";
|
||||
longDescription = ''
|
||||
A fork of XCompMgr, which is a sample compositing manager for X servers
|
||||
supporting the XFIXES, DAMAGE, RENDER, and COMPOSITE extensions. It enables
|
||||
basic eye-candy effects. This fork adds additional features, such as additional
|
||||
effects, and a fork at a well-defined and proper place.
|
||||
A fork of XCompMgr, which is a sample compositing manager for X
|
||||
servers supporting the XFIXES, DAMAGE, RENDER, and COMPOSITE
|
||||
extensions. It enables basic eye-candy effects. This fork adds
|
||||
additional features, such as additional effects, and a fork at a
|
||||
well-defined and proper place.
|
||||
'';
|
||||
license = licenses.mit;
|
||||
platforms = platforms.linux;
|
||||
|
@ -1,7 +1,7 @@
|
||||
{ stdenv, fetchFromGitHub, asciidoc, dbus, docbook_xml_dtd_45,
|
||||
docbook_xml_xslt, libconfig, libdrm, libxml2, libxslt, mesa, pcre,
|
||||
pkgconfig, libXcomposite, libXdamage, libXext, libXfixes, libXinerama,
|
||||
libXrandr, libXrender }:
|
||||
libXrandr, libXrender, xwininfo }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "compton-git-2015-09-21";
|
||||
@ -37,6 +37,8 @@ stdenv.mkDerivation {
|
||||
pcre
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [ xwininfo ];
|
||||
|
||||
installFlags = "PREFIX=$(out)";
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
@ -47,7 +49,7 @@ stdenv.mkDerivation {
|
||||
longDescription = ''
|
||||
A fork of XCompMgr, which is a sample compositing manager for X
|
||||
servers supporting the XFIXES, DAMAGE, RENDER, and COMPOSITE
|
||||
extensions. It enables basic eye-candy effects. This fork adds
|
||||
extensions. It enables basic eye-candy effects. This fork adds
|
||||
additional features, such as additional effects, and a fork at a
|
||||
well-defined and proper place.
|
||||
'';
|
||||
|
Loading…
Reference in New Issue
Block a user