packard/shell.nix

11 lines
160 B
Nix
Raw Normal View History

2025-01-13 17:34:24 +00:00
{pkgs ? import <nixpkgs> {}}:
pkgs.mkShell {
nativeBuildInputs = with pkgs.buildPackages; [
cargo
rustc
rustfmt
pkg-config
openssl
];
}