sshping: fix build on darwin

Fix hardcoded C++ compiler
This commit is contained in:
Ryan Burns 2020-09-27 12:59:28 -07:00
parent c9c10e240e
commit e1d834aa09

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