3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/misc/hugo/default.nix

31 lines
685 B
Nix
Raw Normal View History

2020-07-28 04:33:32 +01:00
{ stdenv, buildGoModule, fetchFromGitHub }:
2016-06-17 16:38:40 +01:00
buildGoModule rec {
pname = "hugo";
2020-11-11 09:41:21 +00:00
version = "0.78.1";
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}";
2020-11-11 09:41:21 +00:00
sha256 = "1rzv6az7fb1xvjxxq31rs42waqpwvks4h03lzjxv0kj8i43z116k";
2016-06-17 16:38:40 +01:00
};
2020-11-11 09:41:21 +00:00
vendorSha256 = "06cw3qj57nhrxrbbxcyrqn53j6g11rd2q7bxw89fdn901mc26s03";
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 = [ "." ];
2018-02-21 14:08:58 +00:00
meta = with stdenv.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;
2020-02-04 09:49:01 +00:00
maintainers = with maintainers; [ schneefux filalex77 Frostman ];
2016-10-09 17:44:25 +01:00
};
2016-06-17 16:38:40 +01:00
}