forked from mirrors/nixpkgs
31e77f5096
The exit code of the i3 test runner is always 0, regardless of whether tests were failing or not, so let's quickly grep for a "not ok" in the test logfile and if it occurs, the whole build is failing now. Signed-off-by: aszlig <aszlig@redmoonstudios.org>
54 lines
1.6 KiB
Nix
54 lines
1.6 KiB
Nix
{ fetchurl, stdenv, which, pkgconfig, libxcb, xcbutilkeysyms, xcbutil,
|
|
xcbutilwm, libstartup_notification, libX11, pcre, libev, yajl,
|
|
xcb-util-cursor, coreutils, perl, pango, perlPackages, xdummy }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "i3-${version}";
|
|
version = "4.8";
|
|
|
|
src = fetchurl {
|
|
url = "http://i3wm.org/downloads/${name}.tar.bz2";
|
|
sha256 = "0sqvd8yqf9vwqrrvbpbf8k93b3qfa3q9289m82xq15r31wlk8b2h";
|
|
};
|
|
|
|
buildInputs = [
|
|
which pkgconfig libxcb xcbutilkeysyms xcbutil xcbutilwm
|
|
libstartup_notification libX11 pcre libev yajl xcb-util-cursor perl pango
|
|
perlPackages.AnyEventI3 perlPackages.X11XCB perlPackages.IPCRun
|
|
perlPackages.ExtUtilsPkgConfig perlPackages.TestMore perlPackages.InlineC
|
|
perlPackages.CarpAlways
|
|
];
|
|
|
|
patchPhase = ''
|
|
patchShebangs .
|
|
'';
|
|
|
|
doCheck = true;
|
|
|
|
checkPhase = ''
|
|
ln -sf "${xdummy}/bin/xdummy" testcases/Xdummy
|
|
(cd testcases && perl complete-run.pl)
|
|
! grep -q '^not ok' testcases/latest/complete-run.log
|
|
'';
|
|
|
|
configurePhase = "makeFlags=PREFIX=$out";
|
|
|
|
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.
|
|
'';
|
|
};
|
|
|
|
}
|
|
|