handsfreectl 0.2.0

Command line control interface for the Handsfree speech-to-text daemon
Documentation
# shell.nix
#
# Use this file with `nix-shell` to create a development environment
# for the 'handsfreectl' project.

{ pkgs ? import <nixpkgs> { } }:

pkgs.mkShell {
  name = "handsfreectl-dev";

  buildInputs = [
    pkgs.cargo
    pkgs.rustc
    pkgs.gcc # cc required by some rust dependencies' build scripts
  ];

  shellHook = ''
    echo "Entered handsfreectl development shell."
  '';
}