about summary refs log tree commit diff
path: root/pkgs/top-level
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2020-03-21 06:05:00 -0500
committerMario Rodas <marsam@users.noreply.github.com>2020-03-21 06:05:00 -0500
commitdc689861429aeeab9c0757c29971c4eeb92aefce (patch)
tree141b05006df4da19ff07eabc47000f5adb4a4ce3 /pkgs/top-level
parent1565aabb5e18e8c6558f1b863ac3f22598e7e7d2 (diff)
downloadnixlib-dc689861429aeeab9c0757c29971c4eeb92aefce.tar
nixlib-dc689861429aeeab9c0757c29971c4eeb92aefce.tar.gz
nixlib-dc689861429aeeab9c0757c29971c4eeb92aefce.tar.bz2
nixlib-dc689861429aeeab9c0757c29971c4eeb92aefce.tar.lz
nixlib-dc689861429aeeab9c0757c29971c4eeb92aefce.tar.xz
nixlib-dc689861429aeeab9c0757c29971c4eeb92aefce.tar.zst
nixlib-dc689861429aeeab9c0757c29971c4eeb92aefce.zip
obfs4: fix build on darwin
Diffstat (limited to 'pkgs/top-level')
-rw-r--r--pkgs/top-level/all-packages.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index 9b6aa9636ef3..7200320ff7df 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -5575,7 +5575,9 @@ in
 
   obexd = callPackage ../tools/bluetooth/obexd { };
 
-  obfs4 = callPackage ../tools/networking/obfs4 { };
+  obfs4 = callPackage ../tools/networking/obfs4 {
+    inherit (darwin.apple_sdk.frameworks) Security;
+  };
 
   oci-image-tool = callPackage ../tools/misc/oci-image-tool { };