2016-09-26 11:09:25 +02:00
|
|
|
{ stdenv, fetchFromGitHub, python27Packages, glib, cairo, pango, pkgconfig, libxcb, xcbutilcursor }:
|
2015-07-28 22:52:03 +02:00
|
|
|
|
2015-12-01 12:46:18 +01:00
|
|
|
let cairocffi-xcffib = python27Packages.cairocffi.override {
|
2018-02-21 03:25:23 +01:00
|
|
|
withXcffib = true;
|
2015-12-01 12:46:18 +01:00
|
|
|
};
|
|
|
|
in
|
|
|
|
|
2016-09-26 11:09:25 +02:00
|
|
|
python27Packages.buildPythonApplication rec {
|
2015-07-28 22:52:03 +02:00
|
|
|
name = "qtile-${version}";
|
2018-05-24 17:23:47 +02:00
|
|
|
version = "0.11.1";
|
2015-07-28 22:52:03 +02:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "qtile";
|
|
|
|
repo = "qtile";
|
|
|
|
rev = "v${version}";
|
2018-05-24 17:23:47 +02:00
|
|
|
sha256 = "1jw6mh9m5yrijhm218lc51sc89lc2ihvyx30jhrkxy2mzllhjgrs";
|
2015-07-28 22:52:03 +02:00
|
|
|
};
|
|
|
|
|
2015-12-01 12:46:18 +01:00
|
|
|
patches = [
|
|
|
|
./0001-Substitution-vars-for-absolute-paths.patch
|
|
|
|
./0002-Restore-PATH-and-PYTHONPATH.patch
|
|
|
|
./0003-Restart-executable.patch
|
|
|
|
];
|
2015-07-28 22:52:03 +02:00
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace libqtile/manager.py --subst-var-by out $out
|
2016-09-26 11:09:25 +02:00
|
|
|
substituteInPlace libqtile/pangocffi.py --subst-var-by glib ${glib.out}
|
|
|
|
substituteInPlace libqtile/pangocffi.py --subst-var-by pango ${pango.out}
|
|
|
|
substituteInPlace libqtile/xcursors.py --subst-var-by xcb-cursor ${xcbutilcursor.out}
|
2015-07-28 22:52:03 +02:00
|
|
|
'';
|
|
|
|
|
2017-09-05 23:26:13 +02:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ glib libxcb cairo pango python27Packages.xcffib ];
|
2015-07-28 22:52:03 +02:00
|
|
|
|
2016-10-14 00:03:12 +02:00
|
|
|
pythonPath = with python27Packages; [ xcffib cairocffi-xcffib trollius ];
|
2015-07-28 22:52:03 +02:00
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
wrapProgram $out/bin/qtile \
|
2017-11-20 00:56:03 +01:00
|
|
|
--run 'export QTILE_WRAPPER=$0' \
|
|
|
|
--run 'export QTILE_SAVED_PYTHONPATH=$PYTHONPATH' \
|
|
|
|
--run 'export QTILE_SAVED_PATH=$PATH'
|
2015-07-28 22:52:03 +02:00
|
|
|
'';
|
|
|
|
|
2017-12-11 12:14:54 +01:00
|
|
|
doCheck = false; # Requires X server.
|
|
|
|
|
2015-07-28 22:52:03 +02:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = http://www.qtile.org/;
|
|
|
|
license = licenses.mit;
|
|
|
|
description = "A small, flexible, scriptable tiling window manager written in Python";
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ kamilchm ];
|
|
|
|
};
|
|
|
|
}
|