{ lib, buildGoModule, fetchFromGitHub, installShellFiles }: buildGoModule rec { pname = "hugo"; version = "0.91.2"; src = fetchFromGitHub { owner = "gohugoio"; repo = pname; rev = "v${version}"; sha256 = "sha256-6bqtw0hUrRBhTwEDURaTjgl3aVVCbfxjoPRfhSd3LK8="; }; vendorSha256 = "sha256-M4pKAxNd8rqluVm+c+X+nxC/vcaVclebo9HP17yEpfo="; doCheck = false; proxyVendor = true; tags = [ "extended" ]; subPackages = [ "." ]; nativeBuildInputs = [ installShellFiles ]; postInstall = '' $out/bin/hugo gen man installManPage man/* installShellCompletion --cmd hugo \ --bash <($out/bin/hugo gen autocomplete --type=bash) \ --fish <($out/bin/hugo gen autocomplete --type=fish) \ --zsh <($out/bin/hugo gen autocomplete --type=zsh) ''; meta = with lib; { description = "A fast and modern static website engine"; homepage = "https://gohugo.io"; license = licenses.asl20; maintainers = with maintainers; [ schneefux Br1ght0ne Frostman ]; }; }