mirror of
https://github.com/itsjunetime/tdf.git
synced 2026-06-01 23:51:46 -04:00
d5d62c81a3
For some reason rust-analyzer does not show clippy diagnostics when installed this way.
12 lines
169 B
Nix
12 lines
169 B
Nix
{
|
|
pkgs ? import <nixpkgs> { },
|
|
}:
|
|
pkgs.mkShell {
|
|
nativeBuildInputs = [ pkgs.pkg-config ];
|
|
|
|
buildInputs = [
|
|
pkgs.rustPlatform.bindgenHook
|
|
pkgs.cairo
|
|
];
|
|
}
|