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

31 lines
686 B
Nix
Raw Normal View History

2020-07-27 20:33:32 -07:00
{ stdenv, buildGoModule, fetchFromGitHub }:
2016-06-17 08:38:40 -07:00
buildGoModule rec {
pname = "hugo";
2020-09-25 02:39:22 -07:00
version = "0.75.1";
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}";
2020-09-25 02:39:22 -07:00
sha256 = "1c3l3q2xkibl1lz2mbvhgj94s6d9g5nakhpzj252s3m3cgk4w5wh";
2016-06-17 08:38:40 -07:00
};
2020-09-25 02:39:22 -07:00
vendorSha256 = "0gdd8fqd4mwg69wj8dxmm5wh1pjhdc189l2gy6njgpmwh93xbvdg";
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 = [ "." ];
2018-02-21 06:08:58 -08:00
meta = with stdenv.lib; {
2016-10-09 09:44:25 -07:00
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;
2020-02-04 01:49:01 -08:00
maintainers = with maintainers; [ schneefux filalex77 Frostman ];
2016-10-09 09:44:25 -07:00
};
2016-06-17 08:38:40 -07:00
}