From b86754cb92cf0c43ed6a34831517e46b8c60f290 Mon Sep 17 00:00:00 2001 From: Tom Willemse Date: Wed, 12 Jul 2023 15:08:31 -0700 Subject: Add ‘guile-termios’ dependency to set the speed of the inkplate TTY There seems to be magic going on here. Once the speed has been set for the device once the OS (at least GNU/Linux) remembers the setting and it doesn't have to happen again after. Since I was porting from my Emacs module, I kept running Emacs and it kept setting the speed, which meant that my tests with Guile kept working. After a reboot, it stopped. This change makes sure that the speed is set. I'm not sure if the raw is necessary, but it's in the example, and it seems to work for now, so I'll keep it around. --- guix.scm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'guix.scm') diff --git a/guix.scm b/guix.scm index fd9512d..575e981 100644 --- a/guix.scm +++ b/guix.scm @@ -23,7 +23,8 @@ ("pkg-config" ,pkg-config) ("texinfo" ,texinfo))) (inputs `(("guile" ,guile-3.0))) - (propagated-inputs `()) + (propagated-inputs + `(("guile-termios" ,guile-termios))) (synopsis "") (description "") (home-page "") -- cgit v1.2.3-54-g00ecf