sshping: fix build on darwin

Fix hardcoded C++ compiler
gstqt5
Ryan Burns 2020-09-27 12:59:28 -07:00
parent c9c10e240e
commit e1d834aa09
1 changed files with 1 additions and 1 deletions

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 = ''