packard/shell.nix

12 lines
175 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
2025-05-05 21:49:42 +01:00
cargo-edit
2025-01-13 17:34:24 +00:00
];
}