Use lorri for development

This commit is contained in:
Jesper Louis Andersen 2021-06-14 16:17:19 +02:00
parent 9919871e53
commit 442094df0d

View File

@ -1,16 +1,12 @@
{ pkgs ? import <nixpkgs> {} }:
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
];
}