From 442094df0d8e9b8517f3953d213bade188c6f4e9 Mon Sep 17 00:00:00 2001 From: Jesper Louis Andersen Date: Mon, 14 Jun 2021 16:17:19 +0200 Subject: [PATCH] Use lorri for development --- shell.nix | 20 ++++++++------------ 1 file changed, 8 insertions(+), 12 deletions(-) diff --git a/shell.nix b/shell.nix index 7c2ad6e..c252f46 100644 --- a/shell.nix +++ b/shell.nix @@ -1,16 +1,12 @@ { pkgs ? import {} }: -with pkgs; +pkgs.mkShell { + buildInputs = [ + pkgs.hello -let - inherit (lib) optional optionals; - - erlang_wx = erlangR23.override { - wxSupport = true; - }; -in - -mkShell { - buildInputs = [ erlang_wx git libsodium ] - ++ optional stdenv.isLinux inotify-tools; + # keep this line if you use bash + pkgs.bashInteractive + pkgs.erlang + pkgs.libsodium + ]; }