aoc2021/shell.nix

9 lines
108 B
Nix

{ pkgs ? (import <nixpkgs> {}) }:
pkgs.mkShell {
buildInputs = with pkgs; [
gnumake
php80
];
}