8 lines
194 B
Nix
8 lines
194 B
Nix
{ pkgs, ... }:
|
|
{
|
|
sane.programs.expect = {
|
|
packageUnwrapped = pkgs.linkBinIntoOwnPackage pkgs.expect "expect";
|
|
sandbox.enable = false; #< it's typically used to launch programs
|
|
};
|
|
}
|