1
0
Fork 0
mirror of https://github.com/LnL7/nix-darwin.git synced 2025-03-05 08:17:01 +00:00
nix-darwin/tests/environment-terminfo.nix

11 lines
212 B
Nix
Raw Normal View History

{ config, lib, pkgs, ... }:
with lib;
{
test = ''
echo checking /usr/share/terminfo in environment >&2
2022-10-20 14:49:26 -06:00
grep 'export TERMINFO_DIRS=.*:/usr/share/terminfo' ${config.system.build.setEnvironment}
'';
}