Files
Max Dexheimer d5d62c81a3 Remove rust toolchain from shell.nix
For some reason rust-analyzer does not show clippy diagnostics when
installed this way.
2025-12-05 12:00:00 +01:00

12 lines
169 B
Nix

{
pkgs ? import <nixpkgs> { },
}:
pkgs.mkShell {
nativeBuildInputs = [ pkgs.pkg-config ];
buildInputs = [
pkgs.rustPlatform.bindgenHook
pkgs.cairo
];
}