From 0c7619535112e19232384e15e82ffa6a5af7569d Mon Sep 17 00:00:00 2001 From: Jade Lovelace Date: Fri, 9 Aug 2024 23:24:17 -0700 Subject: build: remove expect as a dependency I was packaging Lix 2.91 for nixpkgs and was annoyed at the expect dependency. Turns out that you can replace unbuffer with a pretty-short Python script. It became less short after I found out that Linux was converting \n to \r\n in the terminal subsystem, which was not very funny, but is at least solved by twiddling termios bits. Change-Id: I8a2700abcbbf6a9902e01b05b40fa9340c0ab90c --- misc/meson.build | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'misc/meson.build') diff --git a/misc/meson.build b/misc/meson.build index a8f09722c..bf3c157f7 100644 --- a/misc/meson.build +++ b/misc/meson.build @@ -4,3 +4,9 @@ subdir('zsh') subdir('systemd') subdir('flake-registry') + +runinpty = configure_file( + copy : true, + input : meson.current_source_dir() / 'runinpty.py', + output : 'runinpty.py', +) -- cgit v1.2.3