summary refs log tree commit diff
path: root/pkgs/os-specific/darwin
diff options
context:
space:
mode:
authorMonson Shao <holymonson@gmail.com>2021-01-14 22:35:12 +0800
committerMonson Shao <holymonson@gmail.com>2021-01-30 21:37:46 +0800
commit4da71ef5af6829ba3907e0fcb7bf3ab7645a1345 (patch)
treef812e0d2010f42404a3396c543b2e9abe69a2a8b /pkgs/os-specific/darwin
parentc08b0b360aab53c067e3da10fd4d0ea268aa23d0 (diff)
downloadnixpkgs-4da71ef5af6829ba3907e0fcb7bf3ab7645a1345.tar
nixpkgs-4da71ef5af6829ba3907e0fcb7bf3ab7645a1345.tar.gz
nixpkgs-4da71ef5af6829ba3907e0fcb7bf3ab7645a1345.tar.bz2
nixpkgs-4da71ef5af6829ba3907e0fcb7bf3ab7645a1345.tar.lz
nixpkgs-4da71ef5af6829ba3907e0fcb7bf3ab7645a1345.tar.xz
nixpkgs-4da71ef5af6829ba3907e0fcb7bf3ab7645a1345.tar.zst
nixpkgs-4da71ef5af6829ba3907e0fcb7bf3ab7645a1345.zip
darwin.CommonCrypto: add appleHeaders
Diffstat (limited to 'pkgs/os-specific/darwin')
-rw-r--r--pkgs/os-specific/darwin/apple-source-releases/CommonCrypto/default.nix28
1 files changed, 28 insertions, 0 deletions
diff --git a/pkgs/os-specific/darwin/apple-source-releases/CommonCrypto/default.nix b/pkgs/os-specific/darwin/apple-source-releases/CommonCrypto/default.nix
index 609cd579f9f..476a77c59d7 100644
--- a/pkgs/os-specific/darwin/apple-source-releases/CommonCrypto/default.nix
+++ b/pkgs/os-specific/darwin/apple-source-releases/CommonCrypto/default.nix
@@ -6,6 +6,34 @@ appleDerivation {
     cp include/* $out/include/CommonCrypto
   '';
 
+  appleHeaders = ''
+    CommonCrypto/CommonBaseXX.h
+    CommonCrypto/CommonBigNum.h
+    CommonCrypto/CommonCMACSPI.h
+    CommonCrypto/CommonCRC.h
+    CommonCrypto/CommonCrypto.h
+    CommonCrypto/CommonCryptoError.h
+    CommonCrypto/CommonCryptoPriv.h
+    CommonCrypto/CommonCryptor.h
+    CommonCrypto/CommonCryptorSPI.h
+    CommonCrypto/CommonDH.h
+    CommonCrypto/CommonDigest.h
+    CommonCrypto/CommonDigestSPI.h
+    CommonCrypto/CommonECCryptor.h
+    CommonCrypto/CommonHMAC.h
+    CommonCrypto/CommonHMacSPI.h
+    CommonCrypto/CommonKeyDerivation.h
+    CommonCrypto/CommonKeyDerivationSPI.h
+    CommonCrypto/CommonNumerics.h
+    CommonCrypto/CommonRSACryptor.h
+    CommonCrypto/CommonRandom.h
+    CommonCrypto/CommonRandomSPI.h
+    CommonCrypto/CommonSymmetricKeywrap.h
+    CommonCrypto/aes.h
+    CommonCrypto/lionCompat.h
+    CommonCrypto/module.modulemap
+  '';
+
   meta = with lib; {
     maintainers = with maintainers; [ copumpkin ];
     platforms   = platforms.darwin;