Skip to content

Commit

Permalink
sshping: fix build on darwin
Browse files Browse the repository at this point in the history
Fix hardcoded C++ compiler
  • Loading branch information
r-burns committed Sep 27, 2020
1 parent c9c10e2 commit e1d834a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkgs/tools/networking/sshping/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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 = ''
Expand Down

0 comments on commit e1d834a

Please sign in to comment.