2021-01-12 09:59:13 +00:00
|
|
|
{ fetchurl, lib, stdenv, pkg-config, makeWrapper, meson, ninja, installShellFiles, libxcb, xcbutilkeysyms
|
2016-11-10 01:38:50 +00:00
|
|
|
, xcbutil, xcbutilwm, xcbutilxrm, libstartup_notification, libX11, pcre, libev
|
2018-07-21 01:44:44 +01:00
|
|
|
, yajl, xcb-util-cursor, perl, pango, perlPackages, libxkbcommon
|
2021-10-12 09:57:21 +01:00
|
|
|
, xorgserver, xvfb-run
|
|
|
|
, asciidoc, xmlto, docbook_xml_dtd_45, docbook_xsl, findXMLCatalogs
|
|
|
|
}:
|
2012-04-30 15:34:57 +01:00
|
|
|
|
2017-07-02 13:48:41 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "i3";
|
2021-03-01 07:45:17 +00:00
|
|
|
version = "4.19.2";
|
2012-04-30 15:34:57 +01:00
|
|
|
|
2017-07-02 13:48:41 +01:00
|
|
|
src = fetchurl {
|
2021-01-12 09:59:13 +00:00
|
|
|
url = "https://i3wm.org/downloads/${pname}-${version}.tar.xz";
|
2021-03-01 07:45:17 +00:00
|
|
|
sha256 = "sha256-im7hd2idzyKWTSC2CTAU7k+gQZNF0/1RXVUS2ZgLsnk=";
|
2017-07-02 13:48:41 +01:00
|
|
|
};
|
2016-11-10 01:38:50 +00:00
|
|
|
|
2021-10-12 09:57:21 +01:00
|
|
|
nativeBuildInputs = [
|
|
|
|
pkg-config makeWrapper meson ninja installShellFiles
|
|
|
|
asciidoc xmlto docbook_xml_dtd_45 docbook_xsl findXMLCatalogs
|
|
|
|
];
|
|
|
|
|
|
|
|
mesonFlags = [
|
|
|
|
"-Ddocs=true"
|
|
|
|
"-Dmans=true"
|
|
|
|
];
|
2012-04-30 15:34:57 +01:00
|
|
|
|
2017-07-02 13:48:41 +01:00
|
|
|
buildInputs = [
|
|
|
|
libxcb xcbutilkeysyms xcbutil xcbutilwm xcbutilxrm libxkbcommon
|
|
|
|
libstartup_notification libX11 pcre libev yajl xcb-util-cursor perl pango
|
|
|
|
perlPackages.AnyEventI3 perlPackages.X11XCB perlPackages.IPCRun
|
2018-07-22 03:03:24 +01:00
|
|
|
perlPackages.ExtUtilsPkgConfig perlPackages.InlineC
|
2021-05-08 14:45:03 +01:00
|
|
|
xorgserver xvfb-run
|
2017-07-02 13:48:41 +01:00
|
|
|
];
|
2016-11-10 01:38:50 +00:00
|
|
|
|
2017-07-02 13:48:41 +01:00
|
|
|
configureFlags = [ "--disable-builddir" ];
|
2016-11-10 01:38:50 +00:00
|
|
|
|
2017-07-02 13:48:41 +01:00
|
|
|
postPatch = ''
|
|
|
|
patchShebangs .
|
|
|
|
'';
|
2014-08-01 04:22:08 +01:00
|
|
|
|
2017-07-02 13:48:41 +01:00
|
|
|
# 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
|
2018-08-20 20:11:29 +01:00
|
|
|
doCheck = false; # stdenv.hostPlatform.system == "x86_64-linux";
|
2017-07-02 13:48:41 +01:00
|
|
|
|
2021-01-15 13:21:58 +00:00
|
|
|
checkPhase = lib.optionalString (stdenv.hostPlatform.system == "x86_64-linux")
|
2017-07-02 13:48:41 +01:00
|
|
|
''
|
|
|
|
(cd testcases && xvfb-run ./complete-run.pl -p 1 --keep-xserver-output)
|
|
|
|
! grep -q '^not ok' testcases/latest/complete-run.log
|
|
|
|
'';
|
2017-06-30 07:11:31 +01:00
|
|
|
|
2017-07-02 13:48:41 +01:00
|
|
|
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 16:49:40 +01:00
|
|
|
|
2020-04-28 20:54:14 +01:00
|
|
|
installManPage man/*.1
|
2017-07-02 13:48:41 +01:00
|
|
|
'';
|
2014-11-30 17:40:03 +00:00
|
|
|
|
2017-07-02 13:48:41 +01:00
|
|
|
separateDebugInfo = true;
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2017-07-02 13:48:41 +01:00
|
|
|
description = "A tiling window manager";
|
2018-05-01 04:03:23 +01:00
|
|
|
homepage = "https://i3wm.org";
|
2019-08-20 18:36:05 +01:00
|
|
|
maintainers = with maintainers; [ modulistic fpletz globin ];
|
2017-07-02 13:48:41 +01:00
|
|
|
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.
|
2013-08-23 13:05:36 +01:00
|
|
|
'';
|
2012-04-30 15:34:57 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|