Skip to content

Commit

Permalink
fix flake and dev shell (#112)
Browse files Browse the repository at this point in the history
  • Loading branch information
gabydd authored Dec 6, 2023
1 parent 14a6627 commit c7c00ce
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
4 changes: 0 additions & 4 deletions Cargo.lock

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

7 changes: 5 additions & 2 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,11 @@
packages.steel = steel;
legacyPackages = packages;
defaultPackage = packages.steel;
devShell = pkgs.mkShell {
buildInputs = with pkgs; [cargo];
devShell = with pkgs; mkShell {
buildInputs = [cargo openssl] ++ lib.optionals stdenv.isDarwin [darwin.apple_sdk.frameworks.Security];
nativeBuildInputs = [
pkg-config
];
};
});
}

0 comments on commit c7c00ce

Please sign in to comment.