nixpkgs/pkgs/applications/window-managers/i3/default.nix

75 lines
2.4 KiB
Nix
Raw Normal View History

2014-11-30 17:40:03 +00:00
{ fetchurl, stdenv, which, pkgconfig, makeWrapper, libxcb, xcbutilkeysyms
2016-11-10 01:38:50 +00:00
, xcbutil, xcbutilwm, xcbutilxrm, libstartup_notification, libX11, pcre, libev
, yajl, xcb-util-cursor, perl, pango, perlPackages, libxkbcommon
, xorgserver, xvfb_run }:
stdenv.mkDerivation rec {
name = "i3-${version}";
2018-03-13 00:16:08 +00:00
version = "4.15";
src = fetchurl {
url = "https://i3wm.org/downloads/${name}.tar.bz2";
2018-03-13 00:16:08 +00:00
sha256 = "09jk70hsdxab24lqvj2f30ijrkbv3f6q9xi5dcsax1dw3x6m4z91";
};
2016-11-10 01:38:50 +00:00
nativeBuildInputs = [ which pkgconfig makeWrapper ];
buildInputs = [
libxcb xcbutilkeysyms xcbutil xcbutilwm xcbutilxrm libxkbcommon
libstartup_notification libX11 pcre libev yajl xcb-util-cursor perl pango
perlPackages.AnyEventI3 perlPackages.X11XCB perlPackages.IPCRun
perlPackages.ExtUtilsPkgConfig perlPackages.TestMore perlPackages.InlineC
xorgserver xvfb_run
];
2016-11-10 01:38:50 +00:00
configureFlags = [ "--disable-builddir" ];
2016-11-10 01:38:50 +00:00
enableParallelBuilding = true;
postPatch = ''
patchShebangs .
'';
# Tests have been failing (at least for some people in some cases)
# and have been disabled until someone wants to fix them. Some
# initial digging uncovers that the tests call out to `git`, which
# they shouldn't, and then even once that's fixed have some
# perl-related errors later on. For more, see
# https://github.com/NixOS/nixpkgs/issues/7957
doCheck = false; # stdenv.system == "x86_64-linux";
checkPhase = stdenv.lib.optionalString (stdenv.system == "x86_64-linux")
''
(cd testcases && xvfb-run ./complete-run.pl -p 1 --keep-xserver-output)
! grep -q '^not ok' testcases/latest/complete-run.log
'';
postInstall = ''
wrapProgram "$out/bin/i3-save-tree" --prefix PERL5LIB ":" "$PERL5LIB"
for program in $out/bin/i3-sensible-*; do
sed -i 's/which/command -v/' $program
done
2017-09-05 15:49:40 +00:00
2017-09-06 14:19:17 +00:00
install -vD -t $out/share/man/man1 man/*.{1,man}
'';
2014-11-30 17:40:03 +00:00
separateDebugInfo = true;
meta = with stdenv.lib; {
description = "A tiling window manager";
2018-05-01 03:03:23 +00:00
homepage = "https://i3wm.org";
maintainers = with maintainers; [ garbas modulistic fpletz ];
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.
'';
};
}