2023-06-20 08:54:08 +01:00
|
|
|
{ stdenv
|
|
|
|
, lib
|
|
|
|
, buildGoModule
|
|
|
|
, fetchFromGitHub
|
|
|
|
, installShellFiles
|
|
|
|
, buildPackages
|
|
|
|
, testers
|
|
|
|
, hugo
|
|
|
|
}:
|
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";
|
2024-04-26 12:16:25 +01:00
|
|
|
version = "0.125.4";
|
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";
|
2023-12-25 09:57:52 +00:00
|
|
|
repo = "hugo";
|
2023-08-01 10:57:17 +01:00
|
|
|
rev = "refs/tags/v${version}";
|
2024-04-26 12:16:25 +01:00
|
|
|
hash = "sha256-oeOP9UoiAGwYR2Vzr5IZrLfYA3EQJ9j6Bzh7C12pA+c=";
|
2016-06-17 16:38:40 +01:00
|
|
|
};
|
|
|
|
|
2024-04-26 12:16:25 +01:00
|
|
|
vendorHash = "sha256-L8+e6rZvFaNV9gyWJtXv9NnzoigVDSyNKTuxGrRwb44=";
|
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 ];
|
|
|
|
|
2022-08-30 14:18:00 +01:00
|
|
|
ldflags = [ "-s" "-w" "-X github.com/gohugoio/hugo/common/hugo.vendorInfo=nixpkgs" ];
|
|
|
|
|
2022-09-20 16:11:36 +01:00
|
|
|
postInstall = let emulator = stdenv.hostPlatform.emulator buildPackages; in ''
|
|
|
|
${emulator} $out/bin/hugo gen man
|
2021-03-27 11:36:37 +00:00
|
|
|
installManPage man/*
|
|
|
|
installShellCompletion --cmd hugo \
|
2022-09-20 16:11:36 +01:00
|
|
|
--bash <(${emulator} $out/bin/hugo completion bash) \
|
|
|
|
--fish <(${emulator} $out/bin/hugo completion fish) \
|
|
|
|
--zsh <(${emulator} $out/bin/hugo completion zsh)
|
2021-03-27 11:36:37 +00:00
|
|
|
'';
|
|
|
|
|
2023-06-20 08:54:08 +01:00
|
|
|
passthru.tests.version = testers.testVersion {
|
|
|
|
package = hugo;
|
|
|
|
command = "hugo version";
|
|
|
|
version = "v${version}";
|
|
|
|
};
|
|
|
|
|
2023-12-25 09:57:52 +00:00
|
|
|
meta = {
|
|
|
|
changelog = "https://github.com/gohugoio/hugo/releases/tag/v${version}";
|
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";
|
2023-12-25 09:57:52 +00:00
|
|
|
license = lib.licenses.asl20;
|
|
|
|
mainProgram = "hugo";
|
|
|
|
maintainers = with lib.maintainers; [ schneefux Br1ght0ne Frostman ];
|
2016-10-09 17:44:25 +01:00
|
|
|
};
|
2016-06-17 16:38:40 +01:00
|
|
|
}
|