saahildcom/shell.nix
2024-08-25 16:04:36 -04:00

9 lines
172 B
Nix

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