about summary refs log tree commit diff
path: root/pkgs/tools/misc/wagyu
diff options
context:
space:
mode:
authorgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2021-05-19 00:55:36 +0000
committerGitHub <noreply@github.com>2021-05-19 00:55:36 +0000
commit7000ae2b9a6a6748e87cb11c9a7e314ba63202de (patch)
treeca46d384c4163afe29d297482e2c9b19d1d8828c /pkgs/tools/misc/wagyu
parentabbbeaf42a9c9b0b8a0bef376dfe77b05f5c9ad2 (diff)
parent4e211c1b09e70a1c4d0c164ea51497fd31c30c0b (diff)
Merge master into staging-next
Diffstat (limited to 'pkgs/tools/misc/wagyu')
-rw-r--r--pkgs/tools/misc/wagyu/default.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/tools/misc/wagyu/default.nix b/pkgs/tools/misc/wagyu/default.nix
index 047f14ab4326c..59748992dae05 100644
--- a/pkgs/tools/misc/wagyu/default.nix
+++ b/pkgs/tools/misc/wagyu/default.nix
@@ -1,4 +1,4 @@
-{ lib, rustPlatform, fetchFromGitHub }:
+{ lib, stdenv, rustPlatform, fetchFromGitHub, Security }:
 
 rustPlatform.buildRustPackage rec {
   pname = "wagyu";
@@ -13,6 +13,8 @@ rustPlatform.buildRustPackage rec {
 
   cargoSha256 = "10al0j8ak95x4d85lzphgq8kmdnb809l6gahfp5miyvsfd4dxmpi";
 
+  buildInputs = lib.optional stdenv.isDarwin Security;
+
   meta = with lib; {
     description = "Rust library for generating cryptocurrency wallets";
     homepage = "https://github.com/ArgusHQ/wagyu";