{ pkgs ? import <nixpkgs> { } }:
with pkgs;
mkShell {
    BuildInputs = [
        gcc
    ];
    nativeBuildInputs = [
        go_1_19
    ];
}