runo 0.2.1

Simple text editor like nano
1
2
3
4
5
6
7
8
9
10
{ pkgs ? import <nixpkgs> {} }:

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

  RUST_BACKTRACE = 1;
}