2023-06-20 07:54:08 +00:00
|
|
|
{ stdenv
|
|
|
|
, lib
|
|
|
|
, buildGoModule
|
|
|
|
, fetchFromGitHub
|
|
|
|
, installShellFiles
|
|
|
|
, buildPackages
|
|
|
|
, testers
|
|
|
|
, hugo
|
|
|
|
}:
|
2016-06-17 15:38:40 +00:00
|
|
|
|
2019-03-08 21:40:10 +00:00
|
|
|
buildGoModule rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "hugo";
|
2023-11-25 03:15:33 +00:00
|
|
|
version = "0.120.4";
|
2020-03-27 07:33:21 +00:00
|
|
|
|
2016-06-17 15:38:40 +00:00
|
|
|
src = fetchFromGitHub {
|
2019-12-03 18:16:13 +00:00
|
|
|
owner = "gohugoio";
|
|
|
|
repo = pname;
|
2023-08-01 09:57:17 +00:00
|
|
|
rev = "refs/tags/v${version}";
|
2023-11-25 03:15:33 +00:00
|
|
|
hash = "sha256-eBDlX+3Gb4bWRJ0ITwlx1c3q1RCFK2tyuKn9SALHbhI=";
|
2016-06-17 15:38:40 +00:00
|
|
|
};
|
|
|
|
|
2023-11-03 00:49:05 +00:00
|
|
|
vendorHash = "sha256-kUKnoUQzLbi0ssxvK2viNTHLtqx8vaHLYXO8ZWU2rmw=";
|
2020-08-04 00:26:27 +00:00
|
|
|
|
|
|
|
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
|
|
|
|
2019-03-08 21:40:10 +00:00
|
|
|
subPackages = [ "." ];
|
2018-06-18 08:51:13 +00:00
|
|
|
|
2021-03-27 11:36:37 +00:00
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
|
2022-08-30 13:18:00 +00:00
|
|
|
ldflags = [ "-s" "-w" "-X github.com/gohugoio/hugo/common/hugo.vendorInfo=nixpkgs" ];
|
|
|
|
|
2022-09-20 15:11:36 +00: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 15:11:36 +00: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 07:54:08 +00:00
|
|
|
passthru.tests.version = testers.testVersion {
|
|
|
|
package = hugo;
|
|
|
|
command = "hugo version";
|
|
|
|
version = "v${version}";
|
|
|
|
};
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-10-11 05:55:05 +00: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 16:44:25 +00:00
|
|
|
};
|
2016-06-17 15:38:40 +00:00
|
|
|
}
|