Skip to content

Commit

Permalink
fix(nix): use correct package name
Browse files Browse the repository at this point in the history
  • Loading branch information
1000101 committed Dec 8, 2023
1 parent 0ad74fe commit e89cec2
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-20_x
(yarn.override { nodejs = nodejs-20_x; })
nodejs_20
(yarn.override { nodejs = nodejs_20; })
];
shellHook = ''
export PATH="$PATH:$(pwd)/node_modules/.bin"
Expand Down

0 comments on commit e89cec2

Please sign in to comment.