saahildcom/shell.nix

10 lines
172 B
Nix
Raw Normal View History

2024-08-25 20:04:36 +00:00
with import <nixpkgs> {};
stdenv.mkDerivation {
name = "react-bootstrap-shell";
buildInputs = with pkgs; [
nodePackages.create-react-app
nodejs
yarn
];
}