From c0a1b9c43bfac061a8f8b5f3be407ab16c154e38 Mon Sep 17 00:00:00 2001 From: Eric Rodrigues Pires Date: Mon, 6 Apr 2026 19:52:54 -0300 Subject: [PATCH] sandhole: fix Darwin builds --- pkgs/by-name/sa/sandhole/package.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pkgs/by-name/sa/sandhole/package.nix b/pkgs/by-name/sa/sandhole/package.nix index 0f18d8eab76a..4ce080ac11b4 100644 --- a/pkgs/by-name/sa/sandhole/package.nix +++ b/pkgs/by-name/sa/sandhole/package.nix @@ -2,8 +2,10 @@ cmake, fetchFromGitHub, lib, + lld, perl, rustPlatform, + stdenv, versionCheckHook, }: rustPlatform.buildRustPackage (finalAttrs: { @@ -27,7 +29,8 @@ rustPlatform.buildRustPackage (finalAttrs: { nativeBuildInputs = [ cmake perl - ]; + ] + ++ lib.optionals stdenv.hostPlatform.isDarwin [ lld ]; strictDeps = true; useNextest = true;