1
0
Fork 0
mirror of https://github.com/LnL7/nix-darwin.git synced 2024-12-14 11:57:34 +00:00
nix-darwin/tests/environment-terminfo.nix

11 lines
212 B
Nix
Raw Permalink Normal View History

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