nixpkgs/pkgs/applications/misc/hugo/default.nix

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

44 lines
1.2 KiB
Nix
Raw Normal View History

2022-09-20 15:11:36 +00:00
{ stdenv, lib, buildGoModule, fetchFromGitHub, installShellFiles, buildPackages }:
2016-06-17 15:38:40 +00:00
buildGoModule rec {
pname = "hugo";
2022-10-05 12:49:32 +00:00
version = "0.104.3";
2016-06-17 15:38:40 +00:00
src = fetchFromGitHub {
2019-12-03 18:16:13 +00:00
owner = "gohugoio";
repo = pname;
rev = "v${version}";
2022-10-05 12:49:32 +00:00
sha256 = "sha256-bGyU0i/wwFprAoLENrmBY2IxLjwyX4pQ9z4LFIUguI4=";
2016-06-17 15:38:40 +00:00
};
2022-10-09 00:33:12 +00:00
vendorSha256 = "sha256-is1dQJwvhygn95rbeHeGI97vDXo8ftnNqug4eERN3gI=";
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)
'';
meta = with lib; {
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;
maintainers = with maintainers; [ schneefux Br1ght0ne Frostman ];
2016-10-09 16:44:25 +00:00
};
2016-06-17 15:38:40 +00:00
}