programs: ship expect

This commit is contained in:
2025-07-22 21:38:04 +00:00
parent 99c4c4d043
commit 52261d5bc3
3 changed files with 9 additions and 0 deletions

View File

@@ -52,6 +52,7 @@ in
"errno" "errno"
"ethtool" "ethtool"
"evtest" "evtest"
"expect"
"fatresize" "fatresize"
"fd" "fd"
"fftest" # for debugging moby haptics/vibrator, mostly "fftest" # for debugging moby haptics/vibrator, mostly

View File

@@ -58,6 +58,7 @@
./evince.nix ./evince.nix
./evolution-data-server.nix ./evolution-data-server.nix
./exiftool.nix ./exiftool.nix
./expect.nix
./fcitx5.nix ./fcitx5.nix
./feedbackd.nix ./feedbackd.nix
./fftest.nix ./fftest.nix

View File

@@ -0,0 +1,7 @@
{ pkgs, ... }:
{
sane.programs.expect = {
packageUnwrapped = pkgs.linkBinIntoOwnPackage pkgs.expect "expect";
sandbox.enable = false; #< it's typically used to launch programs
};
}