2014-11-30 18:40:03 +01:00
|
|
|
{ fetchurl, stdenv, which, pkgconfig, makeWrapper, libxcb, xcbutilkeysyms
|
|
|
|
, xcbutil, xcbutilwm, libstartup_notification, libX11, pcre, libev, yajl
|
2015-04-05 19:46:45 +02:00
|
|
|
, xcb-util-cursor, coreutils, perl, pango, perlPackages, libxkbcommon
|
|
|
|
, xorgserver, xvfb_run }:
|
2012-04-30 16:34:57 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2012-10-01 21:16:02 +02:00
|
|
|
name = "i3-${version}";
|
2015-04-05 19:46:45 +02:00
|
|
|
version = "4.10.1";
|
2012-04-30 16:34:57 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://i3wm.org/downloads/${name}.tar.bz2";
|
2015-04-05 19:46:45 +02:00
|
|
|
sha256 = "1qjpbrfy5pnk5d0dh9zs96ppw3jwad1jcy529zy4ja68mdgz6b8b";
|
2012-04-30 16:34:57 +02:00
|
|
|
};
|
|
|
|
|
2014-08-01 05:22:08 +02:00
|
|
|
buildInputs = [
|
2015-03-01 22:54:21 +01:00
|
|
|
which pkgconfig makeWrapper libxcb xcbutilkeysyms xcbutil xcbutilwm libxkbcommon
|
2014-08-01 05:22:08 +02:00
|
|
|
libstartup_notification libX11 pcre libev yajl xcb-util-cursor perl pango
|
|
|
|
perlPackages.AnyEventI3 perlPackages.X11XCB perlPackages.IPCRun
|
|
|
|
perlPackages.ExtUtilsPkgConfig perlPackages.TestMore perlPackages.InlineC
|
2015-04-05 19:46:45 +02:00
|
|
|
xorgserver xvfb_run
|
2014-08-01 05:22:08 +02:00
|
|
|
];
|
2012-04-30 16:34:57 +02:00
|
|
|
|
2014-08-02 17:20:57 +02:00
|
|
|
postPatch = ''
|
2012-10-01 21:16:02 +02:00
|
|
|
patchShebangs .
|
|
|
|
'';
|
2012-07-17 14:44:23 +02:00
|
|
|
|
2014-08-01 18:40:19 +02:00
|
|
|
doCheck = stdenv.system == "x86_64-linux";
|
2014-08-01 05:22:08 +02:00
|
|
|
|
2015-01-08 21:31:14 +01:00
|
|
|
checkPhase = stdenv.lib.optionalString (stdenv.system == "x86_64-linux")
|
|
|
|
''
|
2015-04-11 16:09:12 +02:00
|
|
|
(cd testcases && xvfb-run ./complete-run.pl -p 1 --keep-xserver-output)
|
2014-08-01 05:45:14 +02:00
|
|
|
! grep -q '^not ok' testcases/latest/complete-run.log
|
2014-08-01 05:22:08 +02:00
|
|
|
'';
|
|
|
|
|
2012-07-12 11:28:15 +02:00
|
|
|
configurePhase = "makeFlags=PREFIX=$out";
|
2012-04-30 16:34:57 +02:00
|
|
|
|
2014-11-30 18:40:03 +01:00
|
|
|
postInstall = ''
|
|
|
|
wrapProgram "$out/bin/i3-save-tree" --prefix PERL5LIB ":" "$PERL5LIB"
|
2015-01-28 05:30:06 +01:00
|
|
|
mkdir -p $out/man/man1
|
|
|
|
cp man/*.1 $out/man/man1
|
2015-02-16 09:08:16 +01:00
|
|
|
for program in $out/bin/i3-sensible-*; do
|
|
|
|
sed -i 's/which/command -v/' $program
|
|
|
|
done
|
2014-11-30 18:40:03 +01:00
|
|
|
'';
|
|
|
|
|
2013-08-23 14:05:36 +02:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A tiling window manager";
|
|
|
|
homepage = "http://i3wm.org";
|
|
|
|
maintainers = with maintainers; [ garbas modulistic ];
|
|
|
|
license = licenses.bsd3;
|
|
|
|
platforms = platforms.all;
|
|
|
|
|
|
|
|
longDescription = ''
|
|
|
|
A tiling window manager primarily targeted at advanced users and
|
|
|
|
developers. Based on a tree as data structure, supports tiling,
|
|
|
|
stacking, and tabbing layouts, handled dynamically, as well as
|
|
|
|
floating windows. Configured via plain text file. Multi-monitor.
|
|
|
|
UTF-8 clean.
|
|
|
|
'';
|
2012-04-30 16:34:57 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
2013-08-23 14:05:36 +02:00
|
|
|
|