Skip to content

Commit

Permalink
Needs libs provided in shell, no longer coming from parent shell
Browse files Browse the repository at this point in the history
  • Loading branch information
ThetaSinner committed Jul 12, 2024
1 parent 64c67ac commit b64eb63
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,15 @@
devShells.default = pkgs.mkShell {
inputsFrom = [ inputs'.holonix.devShells ];
packages = (with inputs'.holonix.packages; [
# add packages from Holonix
holochain
lair-keystore
rust
]) ++ (with pkgs; [
# add packages from Holonix
holochain
lair-keystore
rust
]) ++ (lib.optionals pkgs.stdenv.isDarwin
(with pkgs.darwin.apple_sdk.frameworks; [
CoreFoundation
Security
])) ++ (with pkgs; [
# add further packages from nixpkgs
nodejs
]);
Expand Down

0 comments on commit b64eb63

Please sign in to comment.