Add dev utils (#120)

This commit is contained in:
Max
2025-11-28 00:33:46 +01:00
committed by GitHub
parent 3fcf3be65f
commit e5cf92221f
2 changed files with 16 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
{
pkgs ? import <nixpkgs> { },
}:
pkgs.mkShell {
nativeBuildInputs = [ pkgs.pkg-config ];
buildInputs = [
pkgs.cargo
pkgs.rustc
pkgs.rustPlatform.bindgenHook
pkgs.cairo
pkgs.rust-analyzer
];
}