From 43fadae0712191cb237a70b2263b28ffdd29a814 Mon Sep 17 00:00:00 2001 From: Elis Hirwing Date: Tue, 14 May 2019 08:40:23 +0200 Subject: [PATCH] Nix shell deps for working with the project --- .envrc | 1 + shell.nix | 9 +++++++++ 2 files changed, 10 insertions(+) create mode 100644 .envrc create mode 100644 shell.nix diff --git a/.envrc b/.envrc new file mode 100644 index 0000000..1d953f4 --- /dev/null +++ b/.envrc @@ -0,0 +1 @@ +use nix diff --git a/shell.nix b/shell.nix new file mode 100644 index 0000000..785ccc5 --- /dev/null +++ b/shell.nix @@ -0,0 +1,9 @@ +with (import {}); + +mkShell { + buildInputs = [ + esptool + picocom + gnumake + ]; +}