add shell.nix file for Nix users

This commit is contained in:
Robin Stumm 2017-01-31 19:38:38 +01:00
parent 8b88bf9ba2
commit 6594e393b8

10
shell.nix Normal file
View File

@ -0,0 +1,10 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.stdenv.mkDerivation {
name = "cursive-env";
buildInputs = with pkgs; [
ncurses
];
RUST_BACKTRACE = 1;
}