bash-language-server: Add shellcheck to bin path

This commit is contained in:
Kevin J Hoerr 2024-01-30 19:02:13 -05:00
parent debe2ca258
commit b10b959827
No known key found for this signature in database
GPG Key ID: 545818BE629C7D95

View File

@ -40,6 +40,14 @@ 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 = ''