mirror of
https://github.com/itsjunetime/tdf.git
synced 2026-06-01 23:51:46 -04:00
15 lines
222 B
Nix
15 lines
222 B
Nix
{
|
|
pkgs ? import <nixpkgs> { },
|
|
}:
|
|
pkgs.mkShell {
|
|
nativeBuildInputs = [ pkgs.pkg-config ];
|
|
|
|
buildInputs = [
|
|
pkgs.cargo
|
|
pkgs.rustc
|
|
pkgs.rustPlatform.bindgenHook
|
|
pkgs.cairo
|
|
pkgs.rust-analyzer
|
|
];
|
|
}
|