Unverified Commit 1197cc0e authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

arp-scan-rs: mark as broken on darwin (#408791)

parents 0b6ca8fa 183015d5
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
{
  lib,
  stdenv,
  fetchFromGitHub,
  gitUpdater,
  rustPlatform,
@@ -18,6 +19,7 @@ rustPlatform.buildRustPackage rec {
  };

  useFetchCargoVendor = true;

  cargoHash = "sha256-lPE/mx4LzSOG1YjGol1f77oox4voZzp9RqrKYZAMoX0=";

  nativeInstallCheckInputs = [ versionCheckHook ];
@@ -43,5 +45,6 @@ rustPlatform.buildRustPackage rec {
    license = lib.licenses.agpl3Only;
    maintainers = with lib.maintainers; [ fab ];
    mainProgram = "arp-scan";
    broken = stdenv.isDarwin;
  };
}