setup-kubectl/node_modules/lodash/flake.nix
github-actions[bot] 7f7e5ba5ea
Add node modules and compiled JavaScript from main (#57)
Co-authored-by: Oliver King <oking3@uncc.edu>
2022-06-21 12:18:30 -04:00

20 lines
459 B
Nix

{
inputs = {
utils.url = "github:numtide/flake-utils";
};
outputs = { self, nixpkgs, utils }:
utils.lib.eachDefaultSystem (system:
let
pkgs = nixpkgs.legacyPackages."${system}";
in rec {
devShell = pkgs.mkShell {
nativeBuildInputs = with pkgs; [
yarn
nodejs-14_x
nodePackages.typescript-language-server
nodePackages.eslint
];
};
});
}