Skip to content

Commit

Permalink
Fixed the nix deps (#339)
Browse files Browse the repository at this point in the history
* Added openssl & a mac crypto dep

* Separated mac dependencies
  • Loading branch information
DavidM-D authored Oct 30, 2023
1 parent a9605c6 commit 1636967
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 12 deletions.
18 changes: 9 additions & 9 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 11 additions & 3 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -20,16 +20,24 @@

# Everything in this list is added to your path
buildInputs =
with pkgs; [
darwin.apple_sdk.frameworks.Security
with pkgs;
[
protobuf
curl
gmp
openssl

# Development
cargo-watch
cargo-audit
];
] ++

pkgs.lib.optionals pkgs.stdenv.isDarwin
[
# Mac crypto libs
darwin.apple_sdk.frameworks.Security
darwin.apple_sdk.frameworks.SystemConfiguration
];
};
});
}

0 comments on commit 1636967

Please sign in to comment.