speakln 0.0.1

println, but the computer talks to you instead
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# shell.nix

{ pkgs ? import <nixos> { } }:
with pkgs; mkShell {
  nativeBuildInputs =
    [
      pkgconfig
      clang
      libclang
      lld
    ];
  buildInputs =
    [
      speechd
    ];
  shellHook =
    ''export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:${pkgs.lib.makeLibraryPath [ libclang speechd ]}"'';
}