2024-07-31 20:56:24 -07:00
|
|
|
with import <nixpkgs> {};
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "react-bootstrap-shell";
|
|
|
|
buildInputs = with pkgs; [
|
|
|
|
create-react-app
|
|
|
|
nodejs
|
2024-08-27 09:36:36 -07:00
|
|
|
pre-commit
|
2024-07-31 20:56:24 -07:00
|
|
|
yarn
|
|
|
|
];
|
|
|
|
shellHook = ''
|
|
|
|
export PATH="$PWD/node_modules/.bin/:$PATH"
|
|
|
|
'';
|
|
|
|
}
|
|
|
|
|