Merge pull request #105 from dermetfan/nix-shell

add shell.nix file for Nix users
This commit is contained in:
Alexandre Bury 2017-01-31 11:15:17 -08:00 committed by GitHub
commit e0e96ab875

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;
}