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

31 lines
673 B
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub }:
2016-06-17 08:38:40 -07:00
buildGoModule rec {
pname = "hugo";
2021-02-20 14:46:41 -08:00
version = "0.81.0";
2016-06-17 08:38:40 -07:00
src = fetchFromGitHub {
2019-12-03 10:16:13 -08:00
owner = "gohugoio";
repo = pname;
rev = "v${version}";
2021-02-20 14:46:41 -08:00
sha256 = "sha256-9YroUxcLixu+MNL37JByCulCHv0WxWGwqBQ/+FGtZLw=";
2016-06-17 08:38:40 -07:00
};
2021-02-20 14:46:41 -08:00
vendorSha256 = "sha256-5gQyoLirXajkzxKxzcuPnjECL2mJPiHS65lYkyIpKs8=";
doCheck = false;
2020-06-03 19:56:24 -07:00
runVend = true;
2016-10-09 09:44:25 -07:00
buildFlags = [ "-tags" "extended" ];
2018-08-02 11:49:19 -07:00
subPackages = [ "." ];
meta = with lib; {
description = "A fast and modern static website engine";
2019-12-03 10:16:13 -08:00
homepage = "https://gohugo.io";
2018-02-21 06:08:58 -08:00
license = licenses.asl20;
maintainers = with maintainers; [ schneefux Br1ght0ne Frostman ];
2016-10-09 09:44:25 -07:00
};
2016-06-17 08:38:40 -07:00
}