mirror of
https://github.com/NeonGamerBot-QK/saahild.com.git
synced 2024-11-09 23:39:40 +00:00
10 lines
172 B
Nix
10 lines
172 B
Nix
|
with import <nixpkgs> {};
|
||
|
stdenv.mkDerivation {
|
||
|
name = "react-bootstrap-shell";
|
||
|
buildInputs = with pkgs; [
|
||
|
nodePackages.create-react-app
|
||
|
nodejs
|
||
|
yarn
|
||
|
];
|
||
|
}
|