15 lines
251 B
Nix
15 lines
251 B
Nix
|
with import <nixpkgs> {};
|
||
|
|
||
|
stdenv.mkDerivation {
|
||
|
name = "react-bootstrap-shell";
|
||
|
buildInputs = with pkgs; [
|
||
|
create-react-app
|
||
|
nodejs
|
||
|
yarn
|
||
|
];
|
||
|
shellHook = ''
|
||
|
export PATH="$PWD/node_modules/.bin/:$PATH"
|
||
|
'';
|
||
|
}
|
||
|
|