postmoogle/vendor/github.com/inbucket/html2text/shell.nix
2025-06-24 10:57:16 +03:00

11 lines
166 B
Nix

{ pkgs ? import <nixpkgs> { } }:
pkgs.mkShell {
buildInputs = with pkgs; [
delve
go
golangci-lint
gopls
];
hardeningDisable = [ "fortify" ];
}