Merge pull request #98965 from r-burns/sshping

sshping: fix build on darwin
This commit is contained in:
Robert Scott 2020-09-27 22:26:37 +01:00 committed by GitHub
commit 4e75022bcf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -14,7 +14,7 @@ stdenv.mkDerivation rec {
buildInputs = [ libssh ];
buildPhase = ''
g++ -Wall -I ext/ -o bin/sshping src/sshping.cxx -lssh
$CXX -Wall -I ext/ -o bin/sshping src/sshping.cxx -lssh
'';
installPhase = ''