nixpkgs/pkgs/by-name/hu/hugo/package.nix

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

60 lines
1.4 KiB
Nix
Raw Normal View History

{ stdenv
, lib
, buildGoModule
, fetchFromGitHub
, installShellFiles
, buildPackages
, testers
, hugo
}:
2016-06-17 15:38:40 +00:00
buildGoModule rec {
pname = "hugo";
2024-03-05 10:46:01 +00:00
version = "0.123.7";
2016-06-17 15:38:40 +00: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 09:57:17 +00:00
rev = "refs/tags/v${version}";
2024-03-05 10:46:01 +00:00
hash = "sha256-uUE694xbu508vny/sbxndGlsFXnBz45fLhieuK4sX/c=";
2016-06-17 15:38:40 +00:00
};
2024-03-01 03:51:30 +00:00
vendorHash = "sha256-V7YRrC+6fOIjXOu7E0kIOZZt++4oFLPhmHeWmOVU3Xw=";
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 ];
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
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)
'';
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}";
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 16:44:25 +00:00
};
2016-06-17 15:38:40 +00:00
}