mara/shell.nix

14 lines
173 B
Nix

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