From 404412e28c2ad43976ad3b3ab9fe9fe0ba3ed4cb Mon Sep 17 00:00:00 2001 From: arcnmx Date: Wed, 15 Jan 2020 10:06:56 -0800 Subject: [PATCH] vit: fix check phase --- pkgs/applications/misc/vit/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/applications/misc/vit/default.nix b/pkgs/applications/misc/vit/default.nix index 9953af19d90..cb71ec1524b 100644 --- a/pkgs/applications/misc/vit/default.nix +++ b/pkgs/applications/misc/vit/default.nix @@ -1,5 +1,6 @@ { lib , python3Packages +, glibcLocales , taskwarrior }: with python3Packages; @@ -20,6 +21,7 @@ buildPythonApplication rec { tzlocal urwid ]; + checkInputs = [ glibcLocales ]; makeWrapperArgs = [ "--suffix" "PATH" ":" "${taskwarrior}/bin" ];