Files
postmoogle/vendor/github.com/jhillyerd/enmime/shell.nix
2024-02-19 22:55:14 +02:00

12 lines
164 B
Nix

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