feat: darwin dep
This commit is contained in:
parent
47b72f6f04
commit
a053acd83c
2 changed files with 3 additions and 1 deletions
|
@ -8,6 +8,9 @@ mkShell rec {
|
|||
openssl
|
||||
# TODO: Figure out a better way to include sqlx only in dev shells (release shell?)
|
||||
sqlx-cli
|
||||
] ++ lib.optionals pkgs.stdenv.isDarwin [
|
||||
# Additional darwin specific inputs can be set here
|
||||
pkgs.darwin.apple_sdk.frameworks.SystemConfiguration
|
||||
];
|
||||
buildInputs = additionalBuildInputs;
|
||||
LD_LIBRARY_PATH = lib.makeLibraryPath buildInputs;
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
use std::path::Path;
|
||||
|
||||
use askama::Template;
|
||||
use async_zip::{base::write::ZipFileWriter, Compression, ZipEntryBuilder};
|
||||
use axum::{
|
||||
extract::{DefaultBodyLimit, Multipart, State},
|
||||
|
|
Loading…
Reference in a new issue