compton-conf: init at 0.2.0
This commit is contained in:
parent
49bb848816
commit
0d7056331d
|
@ -37,6 +37,7 @@ in
|
||||||
pkgs.libfm
|
pkgs.libfm
|
||||||
pkgs.libfm-extra
|
pkgs.libfm-extra
|
||||||
pkgs.lxmenu-data
|
pkgs.lxmenu-data
|
||||||
|
pkgs.lxqt.compton-conf
|
||||||
pkgs.lxqt.libfm-qt
|
pkgs.lxqt.libfm-qt
|
||||||
pkgs.lxqt.liblxqt
|
pkgs.lxqt.liblxqt
|
||||||
pkgs.lxqt.libqtxdg
|
pkgs.lxqt.libqtxdg
|
||||||
|
|
|
@ -56,6 +56,7 @@ let
|
||||||
|
|
||||||
### OPTIONAL
|
### OPTIONAL
|
||||||
qterminal = callPackage ./optional/qterminal { };
|
qterminal = callPackage ./optional/qterminal { };
|
||||||
|
compton-conf = callPackage ./optional/compton-conf { };
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,37 @@
|
||||||
|
{ stdenv, fetchFromGitHub, cmake, pkgconfig, qt5, kde5, lxqt, libconfig }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "${pname}-${version}";
|
||||||
|
pname = "compton-conf";
|
||||||
|
version = "0.2.0";
|
||||||
|
|
||||||
|
srcs = fetchFromGitHub {
|
||||||
|
owner = "lxde";
|
||||||
|
repo = pname;
|
||||||
|
rev = version;
|
||||||
|
sha256 = "04svxawa8l0ciflrspkzi13nnl7bljmfwwrgxn5lb3sw6qdcmdlk";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ cmake pkgconfig ];
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
qt5.qtbase
|
||||||
|
qt5.qttools
|
||||||
|
qt5.qtx11extras
|
||||||
|
qt5.qtsvg
|
||||||
|
kde5.kwindowsystem
|
||||||
|
lxqt.liblxqt
|
||||||
|
lxqt.libqtxdg
|
||||||
|
libconfig
|
||||||
|
];
|
||||||
|
|
||||||
|
cmakeFlags = [ "-DPULL_TRANSLATIONS=NO" ];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "GUI configuration tool for compton X composite manager";
|
||||||
|
homepage = https://github.com/lxde/compton-conf;
|
||||||
|
license = licenses.lgpl21;
|
||||||
|
maintainers = with maintainers; [ romildo ];
|
||||||
|
platforms = with platforms; unix;
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in New Issue