This commit is contained in:
Saahil dutta 2024-08-25 16:04:36 -04:00
parent c8a0b398f3
commit d32e7c62d1
Signed by: neon
GPG key ID: 8A8B64515254CFC6

9
shell.nix Normal file
View file

@ -0,0 +1,9 @@
with import <nixpkgs> {};
stdenv.mkDerivation {
name = "react-bootstrap-shell";
buildInputs = with pkgs; [
nodePackages.create-react-app
nodejs
yarn
];
}