cursive/shell.nix
2017-01-31 19:38:38 +01:00

11 lines
155 B
Nix

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