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
994 B
Nix
Raw Normal View History

{ stdenv, lib, buildGoModule, fetchFromGitHub, installShellFiles }:
2016-06-17 16:38:40 +01:00
buildGoModule rec {
pname = "hugo";
2022-07-11 16:36:35 +01:00
version = "0.101.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}";
2022-07-11 16:36:35 +01:00
sha256 = "sha256-Fodcefp8xdSV2tt6ZYaKdcLqVe2upEngQr6M+wV5wnw=";
2016-06-17 16:38:40 +01:00
};
2022-07-11 16:36:35 +01:00
vendorSha256 = "sha256-tZQIKxY96G6ReegqjapJ2rLd7n92+axJ7F8UglF61eM=";
doCheck = false;
2022-01-01 05:05:03 +00:00
proxyVendor = true;
2016-10-09 17:44:25 +01:00
2021-08-05 22:52:29 +01:00
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 completion bash) \
--fish <($out/bin/hugo completion fish) \
--zsh <($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 17:44:25 +01:00
};
2016-06-17 16:38:40 +01:00
}