about summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorhappysalada <raphael@megzari.com>2022-06-25 16:18:57 -0400
committerYt <happysalada@proton.me>2022-06-25 16:52:53 -0400
commitad09dacadb82fc425b00fbf867b9bd79c03c6827 (patch)
tree836ec49d07ca58c93468fb4dc383d38a3d240d3d /pkgs/development
parent88843cd736a3a72dfd7505aee114a5832e172bd9 (diff)
cargo-nextest: fix darwin build
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/tools/rust/cargo-nextest/default.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/development/tools/rust/cargo-nextest/default.nix b/pkgs/development/tools/rust/cargo-nextest/default.nix
index ff694cd25758d..8220b8a726667 100644
--- a/pkgs/development/tools/rust/cargo-nextest/default.nix
+++ b/pkgs/development/tools/rust/cargo-nextest/default.nix
@@ -1,4 +1,4 @@
-{ lib, fetchFromGitHub, rustPlatform, stdenv, libiconv }:
+{ lib, fetchFromGitHub, rustPlatform, stdenv, Security }:
 
 rustPlatform.buildRustPackage rec {
   pname = "cargo-nextest";
@@ -13,6 +13,8 @@ rustPlatform.buildRustPackage rec {
 
   cargoSha256 = "sha256-rbrJPEMOFq37U+0uL5NIqithQAdjO8J6TDwr5vdfT50=";
 
+  buildInputs = lib.optionals stdenv.isDarwin [ Security ];
+
   cargoTestFlags = [ # TODO: investigate some more why these tests fail in nix
     "--"
     "--skip=tests_integration::test_relocated_run"