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

29 lines
691 B
Nix
Raw Normal View History

{ stdenv, buildGoModule, fetchFromGitHub }:
2016-06-17 08:38:40 -07:00
buildGoModule rec {
pname = "hugo";
2020-05-06 05:51:18 -07:00
version = "0.70.0";
2016-06-17 08:38:40 -07:00
goPackagePath = "github.com/gohugoio/hugo";
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-05-06 05:51:18 -07:00
sha256 = "14g1x95jh91z9xm3xkv2psw2jn7z6bv2009miyv727df4d58nh6m";
2016-06-17 08:38:40 -07:00
};
2020-05-06 05:51:18 -07:00
modSha256 = "015ha8pjz1fv8qg558xa6hl52fp2qd486ir9m01dvxw63xqx76ss";
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
}