From 8d84efeca051bbaffa7a43ea0ef3109ed1117a45 Mon Sep 17 00:00:00 2001 From: wryk Date: Fri, 5 Nov 2021 20:35:37 +0100 Subject: [PATCH] provide nix shell --- shell.nix | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 shell.nix diff --git a/shell.nix b/shell.nix new file mode 100644 index 0000000..8f823af --- /dev/null +++ b/shell.nix @@ -0,0 +1,9 @@ +{ pkgs ? import { } }: +with pkgs; mkShell { + buildInputs = [ + nodejs-14_x + python39 + gnumake + gcc + ]; +}