broot/shell.nix

12 lines
175 B
Nix
Raw Normal View History

2025-05-22 00:44:19 +01:00
{pkgs ? import <nixpkgs> {}}:
pkgs.mkShell {
nativeBuildInputs = with pkgs.buildPackages; [
cargo
rustc
rustfmt
pkg-config
openssl
cargo-edit
];
}