Files
flake-templates/rust/shell.nix
2023-10-24 17:36:04 +02:00

11 lines
152 B
Nix

{pkgs ? import <nixpkgs> {}}:
pkgs.mkShell {
buildInputs = with pkgs; [
cargo
rustc
pkg-config
openssl
];
}