feat(debug-tools): add terminfo

This commit is contained in:
Lars Sjöström 2025-06-17 10:17:19 +02:00
commit 0f91ef4603
No known key found for this signature in database

View file

@ -20,6 +20,8 @@ pkgs.callPackage ../../lib/make-sysext.nix {
{ drv = pkgs.util-linuxMinimal.mount; path = "bin/"; }
{ drv = pkgs.util-linuxMinimal.login; path = "bin/"; }
{ drv = pkgs.util-linuxMinimal.swap; path = "bin/"; }
{ drv = pkgs.procps; path = "bin/"; }
{ drv = pkgs.procps; path = "lib/"; }
{ drv = pkgs.patos.glibc; path = "bin/ldd"; }
{ drv = pkgs.patos.tpm2-tools; path = "bin/tpm2"; }
{ drv = pkgs.patos.openssl; path = "bin/openssl"; }
@ -32,8 +34,10 @@ pkgs.callPackage ../../lib/make-sysext.nix {
# shared lib required for bash
{ drv = pkgs.readline.out; path = "lib/"; }
{ drv = pkgs.ncurses.out; path = "lib/"; }
{ drv = pkgs.ncurses.out; path = "share/terminfo/"; }
];
services = [{
services = [
{
unit = "dropbear";
content = ''
[Unit]
@ -54,5 +58,6 @@ pkgs.callPackage ../../lib/make-sysext.nix {
[Install]
WantedBy=multi-user.target
'';
}];
}
];
}