{ pkgs ? import <nixpkgs> { } }:
pkgs.mkShell {
packages = with pkgs; [
bacon
cargo
clippy
rust-analyzer
rustc
rustfmt
treefmt
openssl
pkg-config
cargo-machete
cargo-spellcheck
hunspell
just
];
# inputsFrom = [ pkgs.hello pkgs.gnutar ];
shellHook = ''
export DEBUG=1
'';
}