cursive/shell.nix

11 lines
155 B
Nix
Raw Permalink Normal View History

2017-01-31 18:38:38 +00:00
{ pkgs ? import <nixpkgs> {} }:
pkgs.stdenv.mkDerivation {
name = "cursive-env";
buildInputs = with pkgs; [
ncurses
];
RUST_BACKTRACE = 1;
}