nixpkgs/pkgs/applications/misc/hugo/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

42 lines
985 B
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub, installShellFiles }:
2016-06-17 15:38:40 +00:00
buildGoModule rec {
pname = "hugo";
version = "0.96.0";
2016-06-17 15:38:40 +00:00
src = fetchFromGitHub {
2019-12-03 18:16:13 +00:00
owner = "gohugoio";
repo = pname;
rev = "v${version}";
sha256 = "sha256-3O+ZdOloh5gILPQssztt7s/MwRgDOnpJItwLn7FXnPU=";
2016-06-17 15:38:40 +00:00
};
vendorSha256 = "sha256-TgE/ToHBg2QBgtk0gPZTV/icIbQN14RpVAbL/8b+W0U=";
doCheck = false;
2022-01-01 05:05:03 +00:00
proxyVendor = true;
2016-10-09 16:44:25 +00:00
2021-08-05 21:52:29 +00:00
tags = [ "extended" ];
2018-08-02 18:49:19 +00:00
subPackages = [ "." ];
nativeBuildInputs = [ installShellFiles ];
postInstall = ''
$out/bin/hugo gen man
installManPage man/*
installShellCompletion --cmd hugo \
--bash <($out/bin/hugo completion bash) \
--fish <($out/bin/hugo completion fish) \
--zsh <($out/bin/hugo completion zsh)
'';
meta = with lib; {
description = "A fast and modern static website engine";
2019-12-03 18:16:13 +00:00
homepage = "https://gohugo.io";
2018-02-21 14:08:58 +00:00
license = licenses.asl20;
maintainers = with maintainers; [ schneefux Br1ght0ne Frostman ];
2016-10-09 16:44:25 +00:00
};
2016-06-17 15:38:40 +00:00
}