aoc2020/shell.nix

10 lines
115 B
Nix

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