advent-of-code-2024/shell.nix
2024-12-07 17:45:16 +01:00

8 lines
135 B
Nix

{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
nativeBuildInputs = with pkgs; [
cargo
cargo-watch
gcc
];
}