cursive 0.9.0

A TUI (Text User Interface) library focused on ease-of-use.
Documentation
{ pkgs ? import <nixpkgs> {} }:

pkgs.stdenv.mkDerivation {
  name = "cursive-env";
  buildInputs = with pkgs; [
    ncurses
  ];

  RUST_BACKTRACE = 1;
}