From 0a33beadb36ee02255cc216b31ac45664b109ec2 Mon Sep 17 00:00:00 2001 From: Jean-Philippe Braun Date: Fri, 8 Oct 2021 08:35:54 +0200 Subject: [PATCH] hurl: fix build on darwin Closes #140870 --- pkgs/tools/networking/hurl/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/tools/networking/hurl/default.nix b/pkgs/tools/networking/hurl/default.nix index 7caabc9d37cc..1bd64250ae25 100644 --- a/pkgs/tools/networking/hurl/default.nix +++ b/pkgs/tools/networking/hurl/default.nix @@ -1,9 +1,11 @@ { lib +, stdenv , rustPlatform , fetchFromGitHub , pkg-config , libxml2 , openssl +, curl }: rustPlatform.buildRustPackage rec { @@ -24,6 +26,8 @@ rustPlatform.buildRustPackage rec { buildInputs = [ libxml2 openssl + ] ++ lib.optionals stdenv.isDarwin [ + curl ]; # Tests require network access to a test server