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

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

43 lines
1.0 KiB
Nix
Raw Normal View History

{ stdenv, lib, buildGoModule, fetchFromGitHub, installShellFiles }:
2016-06-17 15:38:40 +00:00
buildGoModule rec {
pname = "hugo";
2022-05-19 00:28:28 +00:00
version = "0.99.1";
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-05-19 00:28:28 +00:00
sha256 = "sha256-NFsXu4UxBmsSM6sNRSSoIUj6QjfB5iSXXbTNftakyHI=";
2016-06-17 15:38:40 +00:00
};
2022-05-19 00:28:28 +00:00
vendorSha256 = "sha256-A1ct8BjtKudNqfytCiaEGfgbRCMv45MIQxTka4ZFblg=";
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 ];
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; {
broken = stdenv.isDarwin && stdenv.isx86_64;
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
}