Skip to content

Commit

Permalink
alttab: Enable doCheck
Browse files Browse the repository at this point in the history
Consequently I had to add a few dependencies for the testsuite.
  • Loading branch information
sgraf812 committed Mar 18, 2021
1 parent a8fe539 commit 532ba32
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions pkgs/tools/X11/alttab/default.nix
@@ -1,5 +1,5 @@
{ lib, stdenv, fetchFromGitHub, autoconf, automake, pkg-config, ronn, libpng, uthash
, xorg }:
{ lib, stdenv, coreutils, fetchFromGitHub, autoconf, automake, pkg-config, procps, ronn,
libpng, uthash , which, xnee, xorg, python3Packages }:

stdenv.mkDerivation rec {
version = "1.6.0";
Expand Down Expand Up @@ -35,6 +35,18 @@ stdenv.mkDerivation rec {

enableParallelBuilding = true;

doCheck = true;

checkInputs = [
coreutils
procps
python3Packages.xvfbwrapper
which
xnee
xorg.xeyes
xorg.xprop
];

meta = with lib; {
homepage = "https://github.com/sagb/alttab";
description = "X11 window switcher designed for minimalistic window managers or standalone X11 session";
Expand Down

0 comments on commit 532ba32

Please sign in to comment.