AdventOfCode/default.nix

14 lines
168 B
Nix
Raw 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
2024-12-03 14:19:51 +01:00
cmake
2024-09-23 03:11:36 +02:00
gcc
gdb
2024-12-03 14:19:51 +01:00
valgrind
2024-09-23 03:11:36 +02:00
];
}