{ pkgs ? import <nixpkgs> { } }:
pkgs.mkShell {
# Get dependencies from the main package
inputsFrom = [ (pkgs.callPackage ./default.nix { }) ];
# Additional tooling
buildInputs = with pkgs; [
rustfmt # Formatter
clippy # Linter
llvmPackages_latest.lld # needed for wasm-pack build
];
}