1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-04 11:32:03 +00:00
nixpkgs/pkgs/applications/misc/hugo/default.nix

42 lines
1 KiB
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub, installShellFiles }:
2016-06-17 16:38:40 +01:00
buildGoModule rec {
pname = "hugo";
2021-03-22 09:30:32 +00:00
version = "0.82.0";
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}";
2021-03-22 09:30:32 +00:00
sha256 = "sha256-D0bwy8LJihlfM+E3oys85yjadjZNfPv5xnq4ekaZPCU=";
2016-06-17 16:38:40 +01:00
};
2021-03-22 09:30:32 +00:00
vendorSha256 = "sha256-pJBm+yyy1DbH28oVBQA+PHSDtSg3RcgbRlurrwnnEls=";
doCheck = false;
2020-06-04 03:56:24 +01:00
runVend = true;
2016-10-09 17:44:25 +01:00
buildFlags = [ "-tags" "extended" ];
2018-08-02 19:49:19 +01:00
subPackages = [ "." ];
nativeBuildInputs = [ installShellFiles ];
postInstall = ''
$out/bin/hugo gen man
installManPage man/*
installShellCompletion --cmd hugo \
--bash <($out/bin/hugo gen autocomplete --type=bash) \
--fish <($out/bin/hugo gen autocomplete --type=fish) \
--zsh <($out/bin/hugo gen autocomplete --type=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 17:44:25 +01:00
};
2016-06-17 16:38:40 +01:00
}