hugo 0.116.0 -> 0.116.1 https://repology.org/project/hugo-sitegen/versions attrpath: hugo Checking auto update branch... No auto update branch exists Old version 0.116.0" not present in master derivation file with contents: { stdenv , lib , buildGoModule , fetchFromGitHub , installShellFiles , buildPackages , testers , hugo }: buildGoModule rec { pname = "hugo"; version = "0.116.1"; src = fetchFromGitHub { owner = "gohugoio"; repo = pname; rev = "refs/tags/v${version}"; hash = "sha256-YACMkfDdcou+Yve3D/ealaku1pzuWxInDtnhL/Y+cWw="; }; vendorHash = "sha256-l7XCCsJbqZ4g1U8G3VMVArMofPgchUP0T7wGF57d4rA="; 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) ''; passthru.tests.version = testers.testVersion { package = hugo; command = "hugo version"; version = "v${version}"; }; meta = with lib; { description = "A fast and modern static website engine"; homepage = "https://gohugo.io"; license = licenses.asl20; maintainers = with maintainers; [ schneefux Br1ght0ne Frostman ]; }; }