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 05:47:00 -0500
committerMario Rodas <marsam@users.noreply.github.com>2020-03-21 05:47:00 -0500
commitee2bda21197134febf9dfaa8eb1d0595ff50a879 (patch)
tree05452c7b7514c31dad6440f830e9a3906cb5262d /pkgs/top-level
parente0757cf88a19c01cd9ac65190ab1c8628a02e70a (diff)
downloadnixlib-ee2bda21197134febf9dfaa8eb1d0595ff50a879.tar
nixlib-ee2bda21197134febf9dfaa8eb1d0595ff50a879.tar.gz
nixlib-ee2bda21197134febf9dfaa8eb1d0595ff50a879.tar.bz2
nixlib-ee2bda21197134febf9dfaa8eb1d0595ff50a879.tar.lz
nixlib-ee2bda21197134febf9dfaa8eb1d0595ff50a879.tar.xz
nixlib-ee2bda21197134febf9dfaa8eb1d0595ff50a879.tar.zst
nixlib-ee2bda21197134febf9dfaa8eb1d0595ff50a879.zip
mod: 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 9e9794b8914f..2f772ab3ebb4 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -301,7 +301,9 @@ in
 
   run = callPackage ../development/tools/run { };
 
-  mod = callPackage ../development/tools/mod { };
+  mod = callPackage ../development/tools/mod {
+    inherit (darwin.apple_sdk.frameworks) Security;
+  };
 
   broadlink-cli = callPackage ../tools/misc/broadlink-cli {};