mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
93 lines
2.1 KiB
Nix
93 lines
2.1 KiB
Nix
{ lib, stdenv, fetchurl, cmake, pkg-config, python3, libX11, libXext, libXinerama, libXrandr, libXft, libXrender, freetype, asciidoc
|
|
, xdotool, xorgserver, xsetroot, xterm, runtimeShell
|
|
, nixosTests }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "herbstluftwm";
|
|
version = "0.9.3";
|
|
|
|
src = fetchurl {
|
|
url = "https://herbstluftwm.org/tarballs/herbstluftwm-${version}.tar.gz";
|
|
sha256 = "01f1bv9axjhw1l2gwhdwahljssj0h8q7a1bqwbpnwvln0ayv39qb";
|
|
};
|
|
|
|
outputs = [
|
|
"out"
|
|
"doc"
|
|
"man"
|
|
];
|
|
|
|
cmakeFlags = [
|
|
"-DCMAKE_INSTALL_SYSCONF_PREFIX=${placeholder "out"}/etc"
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
pkg-config
|
|
];
|
|
|
|
depsBuildBuild = [
|
|
asciidoc
|
|
];
|
|
|
|
buildInputs = [
|
|
libX11
|
|
libXext
|
|
libXinerama
|
|
libXrandr
|
|
libXft
|
|
libXrender
|
|
freetype
|
|
];
|
|
|
|
patches = [
|
|
./test-path-environment.patch
|
|
];
|
|
|
|
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;
|
|
|
|
checkInputs = [
|
|
(python3.withPackages (ps: with ps; [ ewmh pytest xlib ]))
|
|
xdotool
|
|
xorgserver
|
|
xsetroot
|
|
xterm
|
|
python3.pkgs.pytestCheckHook
|
|
];
|
|
|
|
# make the package's module avalaible
|
|
preCheck = ''
|
|
export PYTHONPATH="$PYTHONPATH:../python"
|
|
'';
|
|
|
|
pytestFlagsArray = [ "../tests" ];
|
|
disabledTests = [
|
|
"test_title_different_letters_are_drawn"
|
|
];
|
|
|
|
passthru = {
|
|
tests.herbstluftwm = nixosTests.herbstluftwm;
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "A manual tiling window manager for X";
|
|
homepage = "https://herbstluftwm.org/";
|
|
license = licenses.bsd2;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ thibautmarty ];
|
|
};
|
|
}
|