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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

111 lines
2.9 KiB
Nix
Raw Normal View History

2022-04-16 10:12:59 +00:00
{ lib, stdenv, fetchurl, cmake, pkg-config, python3, libX11, libXext, libXinerama, libXrandr, libXft, libXrender, libXdmcp, libXfixes, freetype, asciidoc
2020-11-27 19:20:36 +00:00
, xdotool, xorgserver, xsetroot, xterm, runtimeShell
, fetchpatch
2020-11-27 19:20:36 +00:00
, nixosTests }:
stdenv.mkDerivation rec {
pname = "herbstluftwm";
2022-07-30 10:55:49 +00:00
version = "0.9.5";
2013-07-17 16:02:53 +00:00
src = fetchurl {
url = "https://herbstluftwm.org/tarballs/herbstluftwm-${version}.tar.gz";
2022-07-30 10:55:49 +00:00
sha256 = "sha256-stRgCQnlvs5a1jgY37MLsZ/SrJ9ShHsaenStQEBxgQU=";
2013-07-17 16:02:53 +00:00
};
outputs = [
"out"
"doc"
"man"
];
2013-07-17 16:02:53 +00:00
cmakeFlags = [
"-DCMAKE_INSTALL_SYSCONF_PREFIX=${placeholder "out"}/etc"
];
nativeBuildInputs = [
cmake
pkg-config
];
depsBuildBuild = [
2021-03-25 22:40:51 +00:00
asciidoc
];
buildInputs = [
libX11
libXext
libXinerama
libXrandr
libXft
2021-05-15 15:24:19 +00:00
libXrender
2022-04-16 10:12:59 +00:00
libXdmcp
libXfixes
freetype
];
2013-07-17 16:02:53 +00:00
patches = [
./test-path-environment.patch
# Adjust tests for compatibility with gcc 12 (https://github.com/herbstluftwm/herbstluftwm/issues/1512)
# Can be removed with the next release (>0.9.5).
(fetchpatch {
url = "https://github.com/herbstluftwm/herbstluftwm/commit/8678168c7a3307b1271e94974e062799e745ab40.patch";
hash = "sha256-uI6ErfDitT2Tw0txx4lMSBn/jjiiyL4Qw6AJa/CTh1E=";
})
# Fix tests with recent Xorg, can be removed with the next release (<0.9.5)
# Details here: https://github.com/herbstluftwm/herbstluftwm/issues/1560
(fetchpatch {
url = "https://github.com/herbstluftwm/herbstluftwm/commit/1a6e8ee24eac671569f54bfec22ab47ff285a52c.patch";
hash = "sha256-srulWJQ9zTR4Kdxo40AdHND4nexDe2PDSR69yWsOpVA=";
})
];
postPatch = ''
patchShebangs doc/gendoc.py
# fix /etc/xdg/herbstluftwm paths in documentation and scripts
grep -rlZ /etc/xdg/herbstluftwm share/ doc/ scripts/ | while IFS="" read -r -d "" path; do
substituteInPlace "$path" --replace /etc/xdg/herbstluftwm $out/etc/xdg/herbstluftwm
done
# fix shebang in generated scripts
substituteInPlace tests/conftest.py --replace "/usr/bin/env bash" ${runtimeShell}
substituteInPlace tests/test_herbstluftwm.py --replace "/usr/bin/env bash" ${runtimeShell}
'';
doCheck = true;
nativeCheckInputs = [
(python3.withPackages (ps: with ps; [ ewmh pytest xlib ]))
xdotool
xorgserver
xsetroot
xterm
python3.pkgs.pytestCheckHook
];
2022-12-18 00:39:44 +00:00
# make the package's module available
preCheck = ''
export PYTHONPATH="$PYTHONPATH:../python"
'';
pytestFlagsArray = [ "../tests" ];
disabledTests = [
2022-04-16 10:12:59 +00:00
"test_autostart" # $PATH problems
"test_wmexec_to_other" # timeouts in sandbox
"test_rules" # timeouts
];
2020-11-27 19:20:36 +00:00
passthru = {
tests.herbstluftwm = nixosTests.herbstluftwm;
};
2020-11-20 16:39:33 +00:00
meta = with lib; {
2013-07-17 16:02:53 +00:00
description = "A manual tiling window manager for X";
homepage = "https://herbstluftwm.org/";
2020-11-20 16:39:33 +00:00
license = licenses.bsd2;
platforms = platforms.linux;
maintainers = with maintainers; [ thibautmarty ];
2013-07-17 16:02:53 +00:00
};
}