From 6594e393b830c95b1735ff58722490ff54422012 Mon Sep 17 00:00:00 2001 From: Robin Stumm Date: Tue, 31 Jan 2017 19:38:38 +0100 Subject: [PATCH] add shell.nix file for Nix users --- shell.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 shell.nix diff --git a/shell.nix b/shell.nix new file mode 100644 index 0000000..079f948 --- /dev/null +++ b/shell.nix @@ -0,0 +1,10 @@ +{ pkgs ? import {} }: + +pkgs.stdenv.mkDerivation { + name = "cursive-env"; + buildInputs = with pkgs; [ + ncurses + ]; + + RUST_BACKTRACE = 1; +}