1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-23 22:20:51 +00:00

khard: fix tests

Sandboxing causes the help to be displayed differently when the COLUMNS
variable is not set. See https://github.com/scheibler/khard/issues/263.
This commit is contained in:
Robert Schütz 2020-06-21 20:10:14 +02:00
parent 9480bae337
commit f0e598bd84

View file

@ -22,6 +22,11 @@ python3.pkgs.buildPythonApplication rec {
install -D misc/zsh/_khard $out/share/zsh/site-functions/_khard
'';
preCheck = ''
# see https://github.com/scheibler/khard/issues/263
export COLUMNS=80
'';
meta = {
homepage = "https://github.com/scheibler/khard";
description = "Console carddav client";