2014-11-30 20:40:03 +03:00
|
|
|
{ fetchurl, stdenv, which, pkgconfig, makeWrapper, libxcb, xcbutilkeysyms
|
|
|
|
, xcbutil, xcbutilwm, libstartup_notification, libX11, pcre, libev, yajl
|
2015-04-05 20:46:45 +03:00
|
|
|
, xcb-util-cursor, coreutils, perl, pango, perlPackages, libxkbcommon
|
|
|
|
, xorgserver, xvfb_run }:
|
2012-04-30 18:34:57 +04:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2012-10-01 23:16:02 +04:00
|
|
|
name = "i3-${version}";
|
2015-04-16 19:17:43 +03:00
|
|
|
version = "4.10.2";
|
2012-04-30 18:34:57 +04:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://i3wm.org/downloads/${name}.tar.bz2";
|
2015-04-16 19:17:43 +03:00
|
|
|
sha256 = "1n6grkpv5rsn9zgg8if76mmg85w1asbm3rpplxyn6fzr8wds7587";
|
2012-04-30 18:34:57 +04:00
|
|
|
};
|
|
|
|
|
2014-08-01 07:22:08 +04:00
|
|
|
buildInputs = [
|
2015-03-02 00:54:21 +03:00
|
|
|
which pkgconfig makeWrapper libxcb xcbutilkeysyms xcbutil xcbutilwm libxkbcommon
|
2014-08-01 07:22:08 +04: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 20:46:45 +03:00
|
|
|
xorgserver xvfb_run
|
2014-08-01 07:22:08 +04:00
|
|
|
];
|
2012-04-30 18:34:57 +04:00
|
|
|
|
2014-08-02 19:20:57 +04:00
|
|
|
postPatch = ''
|
2012-10-01 23:16:02 +04:00
|
|
|
patchShebangs .
|
|
|
|
'';
|
2012-07-17 16:44:23 +04:00
|
|
|
|
2014-08-01 20:40:19 +04:00
|
|
|
doCheck = stdenv.system == "x86_64-linux";
|
2014-08-01 07:22:08 +04:00
|
|
|
|
2015-01-08 23:31:14 +03:00
|
|
|
checkPhase = stdenv.lib.optionalString (stdenv.system == "x86_64-linux")
|
|
|
|
''
|
2015-04-11 17:09:12 +03:00
|
|
|
(cd testcases && xvfb-run ./complete-run.pl -p 1 --keep-xserver-output)
|
2014-08-01 07:45:14 +04:00
|
|
|
! grep -q '^not ok' testcases/latest/complete-run.log
|
2014-08-01 07:22:08 +04:00
|
|
|
'';
|
|
|
|
|
2012-07-12 13:28:15 +04:00
|
|
|
configurePhase = "makeFlags=PREFIX=$out";
|
2012-04-30 18:34:57 +04:00
|
|
|
|
2014-11-30 20:40:03 +03:00
|
|
|
postInstall = ''
|
|
|
|
wrapProgram "$out/bin/i3-save-tree" --prefix PERL5LIB ":" "$PERL5LIB"
|
2015-01-28 07:30:06 +03:00
|
|
|
mkdir -p $out/man/man1
|
|
|
|
cp man/*.1 $out/man/man1
|
2015-02-16 11:08:16 +03:00
|
|
|
for program in $out/bin/i3-sensible-*; do
|
|
|
|
sed -i 's/which/command -v/' $program
|
|
|
|
done
|
2014-11-30 20:40:03 +03:00
|
|
|
'';
|
|
|
|
|
2013-08-23 16:05:36 +04: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 18:34:57 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
2013-08-23 16:05:36 +04:00
|
|
|
|