nimble-unwrapped: Add missing Security framework buildInput

This commit is contained in:
Benjamin Lee 2023-04-03 11:00:53 -07:00 committed by Emery Hemingway
parent 73909f4f26
commit 6cf5d549fe

View File

@ -165,7 +165,8 @@ in {
};
depsBuildBuild = [ nim-unwrapped ];
buildInputs = [ openssl ];
buildInputs = [ openssl ]
++ lib.optional stdenv.isDarwin Security;
nimFlags = [ "--cpu:${nimHost.cpu}" "--os:${nimHost.os}" "-d:release" ];