2022-12-26T16:43:15 hugo 0.108.0 -> 0.109.0 https://repology.org/metapackage/hugo/versions 2022-12-26T16:43:17 attrpath: hugo 2022-12-26T16:43:17 Checking auto update branch... 2022-12-26T16:43:17 No auto update branch exists 2022-12-26T16:43:18 Old version 0.108.0" not present in master derivation file with contents: { stdenv, lib, buildGoModule, fetchFromGitHub, installShellFiles, buildPackages }: buildGoModule rec { pname = "hugo"; version = "0.109.0"; src = fetchFromGitHub { owner = "gohugoio"; repo = pname; rev = "v${version}"; sha256 = "sha256-Eak4sU8UwzPQ5iuoNX+KrAJdZ6ZvBdDyJx4xeQI4sjY="; }; vendorSha256 = "sha256-0m5flwvchExP1IDAuE/oTB2eUEbq5KCE8Zvzp5e7yZ8="; doCheck = false; proxyVendor = true; tags = [ "extended" ]; subPackages = [ "." ]; nativeBuildInputs = [ installShellFiles ]; ldflags = [ "-s" "-w" "-X github.com/gohugoio/hugo/common/hugo.vendorInfo=nixpkgs" ]; postInstall = let emulator = stdenv.hostPlatform.emulator buildPackages; in '' ${emulator} $out/bin/hugo gen man installManPage man/* installShellCompletion --cmd hugo \ --bash <(${emulator} $out/bin/hugo completion bash) \ --fish <(${emulator} $out/bin/hugo completion fish) \ --zsh <(${emulator} $out/bin/hugo completion 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 ]; }; }