2022-05-28 14:28:44 +01:00
|
|
|
{ stdenv, lib, buildGoModule, fetchFromGitHub, installShellFiles }:
|
2016-06-17 16:38:40 +01:00
|
|
|
|
2019-03-08 21:40:10 +00:00
|
|
|
buildGoModule rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "hugo";
|
2022-07-11 16:36:35 +01:00
|
|
|
version = "0.101.0";
|
2020-03-27 07:33:21 +00:00
|
|
|
|
2016-06-17 16:38:40 +01:00
|
|
|
src = fetchFromGitHub {
|
2019-12-03 18:16:13 +00:00
|
|
|
owner = "gohugoio";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2022-07-11 16:36:35 +01:00
|
|
|
sha256 = "sha256-Fodcefp8xdSV2tt6ZYaKdcLqVe2upEngQr6M+wV5wnw=";
|
2016-06-17 16:38:40 +01:00
|
|
|
};
|
|
|
|
|
2022-07-11 16:36:35 +01:00
|
|
|
vendorSha256 = "sha256-tZQIKxY96G6ReegqjapJ2rLd7n92+axJ7F8UglF61eM=";
|
2020-08-04 01:26:27 +01:00
|
|
|
|
|
|
|
doCheck = false;
|
|
|
|
|
2022-01-01 05:05:03 +00:00
|
|
|
proxyVendor = true;
|
2016-10-09 17:44:25 +01:00
|
|
|
|
2021-08-05 22:52:29 +01:00
|
|
|
tags = [ "extended" ];
|
2018-08-02 19:49:19 +01:00
|
|
|
|
2019-03-08 21:40:10 +00:00
|
|
|
subPackages = [ "." ];
|
2018-06-18 09:51:13 +01:00
|
|
|
|
2021-03-27 11:36:37 +00:00
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
$out/bin/hugo gen man
|
|
|
|
installManPage man/*
|
|
|
|
installShellCompletion --cmd hugo \
|
2022-04-10 21:37:13 +01:00
|
|
|
--bash <($out/bin/hugo completion bash) \
|
|
|
|
--fish <($out/bin/hugo completion fish) \
|
|
|
|
--zsh <($out/bin/hugo completion zsh)
|
2021-03-27 11:36:37 +00:00
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-10-11 06:55:05 +01:00
|
|
|
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;
|
2020-11-17 11:02:06 +00:00
|
|
|
maintainers = with maintainers; [ schneefux Br1ght0ne Frostman ];
|
2016-10-09 17:44:25 +01:00
|
|
|
};
|
2016-06-17 16:38:40 +01:00
|
|
|
}
|