drishti/default.nix

16 lines
263 B
Nix
Raw Normal View History

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
yarn
];
shellHook = ''
export PATH="$PWD/node_modules/.bin/:$PATH"
'';
}