12 lines
164 B
Nix
12 lines
164 B
Nix
{ pkgs ? import <nixpkgs> { } }:
|
|
pkgs.mkShell {
|
|
buildInputs = with pkgs; [
|
|
delve
|
|
go_1_20
|
|
golint
|
|
gopls
|
|
];
|
|
|
|
hardeningDisable = [ "fortify" ];
|
|
}
|