2021-03-27 04:36:37 -07:00
|
|
|
{ lib, buildGoModule, fetchFromGitHub, installShellFiles }:
|
2016-06-17 08:38:40 -07:00
|
|
|
|
2019-03-08 13:40:10 -08:00
|
|
|
buildGoModule rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "hugo";
|
2021-03-22 02:30:32 -07:00
|
|
|
version = "0.82.0";
|
2020-03-27 00:33:21 -07:00
|
|
|
|
2016-06-17 08:38:40 -07:00
|
|
|
src = fetchFromGitHub {
|
2019-12-03 10:16:13 -08:00
|
|
|
owner = "gohugoio";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2021-03-22 02:30:32 -07:00
|
|
|
sha256 = "sha256-D0bwy8LJihlfM+E3oys85yjadjZNfPv5xnq4ekaZPCU=";
|
2016-06-17 08:38:40 -07:00
|
|
|
};
|
|
|
|
|
2021-03-22 02:30:32 -07:00
|
|
|
vendorSha256 = "sha256-pJBm+yyy1DbH28oVBQA+PHSDtSg3RcgbRlurrwnnEls=";
|
2020-08-03 17:26:27 -07:00
|
|
|
|
|
|
|
doCheck = false;
|
|
|
|
|
2020-06-03 19:56:24 -07:00
|
|
|
runVend = true;
|
2016-10-09 09:44:25 -07:00
|
|
|
|
2019-10-27 06:03:25 -07:00
|
|
|
buildFlags = [ "-tags" "extended" ];
|
2018-08-02 11:49:19 -07:00
|
|
|
|
2019-03-08 13:40:10 -08:00
|
|
|
subPackages = [ "." ];
|
2018-06-18 01:51:13 -07:00
|
|
|
|
2021-03-27 04:36:37 -07:00
|
|
|
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)
|
|
|
|
'';
|
|
|
|
|
2021-01-10 23:54:33 -08:00
|
|
|
meta = with lib; {
|
2020-10-10 22:55:05 -07:00
|
|
|
description = "A fast and modern static website engine";
|
2019-12-03 10:16:13 -08:00
|
|
|
homepage = "https://gohugo.io";
|
2018-02-21 06:08:58 -08:00
|
|
|
license = licenses.asl20;
|
2020-11-17 03:02:06 -08:00
|
|
|
maintainers = with maintainers; [ schneefux Br1ght0ne Frostman ];
|
2016-10-09 09:44:25 -07:00
|
|
|
};
|
2016-06-17 08:38:40 -07:00
|
|
|
}
|