Skip to content

Commit

Permalink
chore(nix): use nodejs 20
Browse files Browse the repository at this point in the history
  • Loading branch information
slowbackspace committed Nov 22, 2023
1 parent 14f28f8 commit c56b3dc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions shell.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ with import <nixpkgs> { };
stdenv.mkDerivation {
name = "openapi";
buildInputs = [
nodejs-14_x
(yarn.override { nodejs = nodejs-14_x; })
nodejs-20_x
(yarn.override { nodejs = nodejs-20_x; })
];
shellHook = ''
export PATH="$PATH:$(pwd)/node_modules/.bin"
Expand Down

0 comments on commit c56b3dc

Please sign in to comment.