diff --git a/default.nix b/default.nix new file mode 100644 index 0000000..aacbbdb --- /dev/null +++ b/default.nix @@ -0,0 +1,14 @@ +with import {}; + +stdenv.mkDerivation { + name = "react-bootstrap-shell"; + buildInputs = with pkgs; [ + create-react-app + nodejs + yarn + ]; + shellHook = '' + export PATH="$PWD/node_modules/.bin/:$PATH" + ''; +} +