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

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

42 lines
1 KiB
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub, installShellFiles }:
2016-06-17 17:38:40 +02:00
buildGoModule rec {
pname = "hugo";
2022-02-12 11:27:15 +01:00
version = "0.92.2";
2016-06-17 17:38:40 +02:00
src = fetchFromGitHub {
2019-12-03 19:16:13 +01:00
owner = "gohugoio";
repo = pname;
rev = "v${version}";
2022-02-12 11:27:15 +01:00
sha256 = "sha256-kwqN/9H/ZI2eL09K/9bOMBWW9bow8LtKpbfxyfxIucA=";
2016-06-17 17:38:40 +02:00
};
2022-02-12 11:27:15 +01:00
vendorSha256 = "sha256-7dJUl0IxsLj0ds2jqtChNCQEBiK9PahG159IhyFxwdM=";
doCheck = false;
2022-01-01 06:05:03 +01:00
proxyVendor = true;
2016-10-09 18:44:25 +02:00
2021-08-05 23:52:29 +02:00
tags = [ "extended" ];
2018-08-02 20:49:19 +02: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 19:16:13 +01:00
homepage = "https://gohugo.io";
2018-02-21 15:08:58 +01:00
license = licenses.asl20;
maintainers = with maintainers; [ schneefux Br1ght0ne Frostman ];
2016-10-09 18:44:25 +02:00
};
2016-06-17 17:38:40 +02:00
}