Merge pull request #118295 from otavio/shellhub-scp

shellhub-agent: Fix scp support

authored by

Sandro and committed by
GitHub
5c966aca 5dfdb2e0

+8
+8
pkgs/applications/networking/shellhub-agent/default.nix
··· 3 3 , fetchFromGitHub 4 4 , genericUpdater 5 5 , common-updater-scripts 6 + , makeWrapper 7 + , openssh 6 8 }: 7 9 8 10 buildGoModule rec { ··· 30 32 ignoredVersions = ".(rc|beta).*"; 31 33 }; 32 34 }; 35 + 36 + nativeBuildInputs = [ makeWrapper ]; 37 + 38 + postInstall = '' 39 + wrapProgram $out/bin/agent --prefix PATH : ${lib.makeBinPath [ openssh ]} 40 + ''; 33 41 34 42 meta = with lib; { 35 43 description =