gping: fix darwin build
iputils is only supported on Linux. I tested building gping on x86_64-darwin without the iputils native check input and it worked.
This commit is contained in:
parent
ff81c24d1d
commit
4fe42fcbc9
1 changed files with 1 additions and 1 deletions
|
@ -22,7 +22,7 @@ rustPlatform.buildRustPackage rec {
|
|||
|
||||
buildInputs = lib.optionals stdenv.isDarwin [ libiconv Security ];
|
||||
|
||||
nativeCheckInputs = [ iputils ];
|
||||
nativeCheckInputs = lib.optionals stdenv.isLinux [ iputils ];
|
||||
|
||||
doInstallCheck = true;
|
||||
installCheckPhase = ''
|
||||
|
|
Loading…
Reference in a new issue