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

31 lines
685 B
Nix
Raw Normal View History

2020-07-28 05:33:32 +02:00
{ stdenv, buildGoModule, fetchFromGitHub }:
2016-06-17 17:38:40 +02:00
buildGoModule rec {
pname = "hugo";
2020-11-03 21:09:22 +01:00
version = "0.78.0";
2016-06-17 17:38:40 +02:00
src = fetchFromGitHub {
2019-12-03 19:16:13 +01:00
owner = "gohugoio";
repo = pname;
rev = "v${version}";
2020-11-03 21:09:22 +01:00
sha256 = "0la1c6yj9dq9rqxk6m8n8l4cabgzlk0r3was8mvgd80g3x3zn55v";
2016-06-17 17:38:40 +02:00
};
2020-11-03 21:09:22 +01:00
vendorSha256 = "09fvvs85rvvh0z4px2bj5908xf1mrcslkzsz09p0gy5i3zaqfnp9";
doCheck = false;
2020-06-04 04:56:24 +02:00
runVend = true;
2016-10-09 18:44:25 +02:00
buildFlags = [ "-tags" "extended" ];
2018-08-02 20:49:19 +02:00
subPackages = [ "." ];
2018-02-21 15:08:58 +01:00
meta = with stdenv.lib; {
description = "A fast and modern static website engine";
2019-12-03 19:16:13 +01:00
homepage = "https://gohugo.io";
2018-02-21 15:08:58 +01:00
license = licenses.asl20;
2020-02-04 10:49:01 +01:00
maintainers = with maintainers; [ schneefux filalex77 Frostman ];
2016-10-09 18:44:25 +02:00
};
2016-06-17 17:38:40 +02:00
}