Files
flake-templates/rust/shell.nix

11 lines
152 B
Nix
Raw Permalink Normal View History

2023-10-24 17:36:04 +02:00
{pkgs ? import <nixpkgs> {}}:
pkgs.mkShell {
buildInputs = with pkgs; [
cargo
rustc
pkg-config
openssl
];
}