From d32e7c62d1ef85d7752a70066b50a8d91ca6cb39 Mon Sep 17 00:00:00 2001 From: Saahil Date: Sun, 25 Aug 2024 16:04:36 -0400 Subject: [PATCH] add nix --- 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 00000000..7ee1b6b7 --- /dev/null +++ b/shell.nix @@ -0,0 +1,9 @@ +with import {}; +stdenv.mkDerivation { + name = "react-bootstrap-shell"; + buildInputs = with pkgs; [ + nodePackages.create-react-app + nodejs + yarn + ]; +}