Skip to content

Commit

Permalink
bash-language-server: Add shellcheck to bin path
Browse files Browse the repository at this point in the history
  • Loading branch information
kjhoerr committed Jan 31, 2024
1 parent 67f04d2 commit e03de09
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions pkgs/development/node-packages/overrides.nix
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,13 @@ final: prev: {
};
};

bash-language-server = prev.bash-language-server.override {
nativeBuildInputs = [ pkgs.buildPackages.makeWrapper ];
postInstall = ''
wrapProgram "$out/bin/bash-language-server" --prefix PATH : ${lib.makeBinPath [ pkgs.shellcheck ]}
'';
};

bower2nix = prev.bower2nix.override {
nativeBuildInputs = [ pkgs.buildPackages.makeWrapper ];
postInstall = ''
Expand Down

0 comments on commit e03de09

Please sign in to comment.