advent-of-code-2025/shell.nix

15 lines
219 B
Nix
Raw Normal View History

2025-11-30 04:13:31 +00:00
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
nativeBuildInputs = [
pkgs.cargo
pkgs.rustc
pkgs.rustPlatform.bindgenHook
pkgs.pkg-config
];
buildInputs = [
pkgs.clippy
pkgs.rustfmt
];
}