AdventOfCode/default.nix

13 lines
155 B
Nix
Raw Permalink Normal View History

2024-09-23 03:11:36 +02:00
let
pkgs = import <nixpkgs> {};
in
pkgs.mkShell {
packages = with pkgs; [
# Choose the build tools that you need
gcc
gdb
cmake
];
}