AdventOfCode/02/default.nix
2024-09-23 03:13:21 +02:00

13 lines
155 B
Nix

let
pkgs = import <nixpkgs> {};
in
pkgs.mkShell {
packages = with pkgs; [
# Choose the build tools that you need
gcc
gdb
cmake
];
}