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

29 lines
691 B
Nix
Raw Normal View History

{ stdenv, buildGoModule, fetchFromGitHub }:
2016-06-17 17:38:40 +02:00
buildGoModule rec {
pname = "hugo";
2020-03-26 19:18:20 +01:00
version = "0.68.3";
2016-06-17 17:38:40 +02:00
goPackagePath = "github.com/gohugoio/hugo";
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-03-26 19:18:20 +01:00
sha256 = "138sv4q6f1szpkrrxnzhvxr6rrznhq1d7in0zba1pifsw3yimqq4";
2016-06-17 17:38:40 +02:00
};
2020-03-21 19:42:10 +01:00
modSha256 = "04vzm65kbj9905z4cf5yh6yc6g3b0pd5vc00lrxw84pwgqgc0ykb";
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; {
2016-10-09 18:44:25 +02:00
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
}